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:06:11 +0900
commit0ffe839d6e363933ed4d9d212b6fd325a6fc3225 (patch)
tree3e607e94c1db1d54bcacd998df14ff84fc453db2 /poxml
parent92ad06c495d06658f03fc368d82dce7f1d268540 (diff)
downloadtdesdk-0ffe839d6e363933ed4d9d212b6fd325a6fc3225.tar.gz
tdesdk-0ffe839d6e363933ed4d9d212b6fd325a6fc3225.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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());
}
)
)