summaryrefslogtreecommitdiffstats
path: root/poxml
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:06:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:33:38 +0900
commit7485c8248a1bb3a2fed851d389a291d60bba7752 (patch)
tree01530186491285c596ad8bea4ee9368436e38a48 /poxml
parent2611dd9a2020f335eff619aeeffc3730144ce657 (diff)
downloadtdesdk-35c2f12d2da60b1cea42bf6d29f21f1761bd8215.tar.gz
tdesdk-35c2f12d2da60b1cea42bf6d29f21f1761bd8215.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0ffe839d6e363933ed4d9d212b6fd325a6fc3225)
Diffstat (limited to 'poxml')
-rw-r--r--poxml/gettext.g14
1 files changed, 7 insertions, 7 deletions
diff --git a/poxml/gettext.g b/poxml/gettext.g
index 1e0a3b34..c50cd5b0 100644
--- a/poxml/gettext.g
+++ b/poxml/gettext.g
@@ -57,17 +57,17 @@ string c, mi, mip, ms;
: c=comment mi=msgid
(
( ms=msgstr {
- mb.comment = QString::fromUtf8(c.c_str());
- mb.msgid = QString::fromUtf8(mi.c_str());
- mb.msgstr = QString::fromUtf8(ms.c_str());
+ mb.comment = TQString::fromUtf8(c.c_str());
+ mb.msgid = TQString::fromUtf8(mi.c_str());
+ mb.msgstr = TQString::fromUtf8(ms.c_str());
}
)
|
( mip=msgid_plural ms=msgstr_plural {
- mb.comment = QString::fromUtf8(c.c_str());
- mb.msgid = QString::fromUtf8(mi.c_str());
- mb.msgid_plural = QString::fromUtf8(mip.c_str());
- mb.msgstr = QString::fromUtf8(ms.c_str());
+ mb.comment = TQString::fromUtf8(c.c_str());
+ mb.msgid = TQString::fromUtf8(mi.c_str());
+ mb.msgid_plural = TQString::fromUtf8(mip.c_str());
+ mb.msgstr = TQString::fromUtf8(ms.c_str());
}
)
)