summaryrefslogtreecommitdiffstats
path: root/poxml/gettext.g
diff options
context:
space:
mode:
Diffstat (limited to 'poxml/gettext.g')
-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());
}
)
)