From 0ffe839d6e363933ed4d9d212b6fd325a6fc3225 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 25 Sep 2023 20:06:11 +0900 Subject: Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- poxml/gettext.g | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'poxml') 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()); } ) ) -- cgit v1.2.1