summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-09-27 17:59:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-09-27 17:59:14 +0900
commit5514eaadfac721d2383f589cbb50329da1efd7e7 (patch)
tree00ed826d7eeef156fe2d75363d773af7561906c7 /doc
parent7847ebf44efa91be3d161b96e8830ea144cef5a5 (diff)
downloadpytde-5514eaadfac721d2383f589cbb50329da1efd7e7.tar.gz
pytde-5514eaadfac721d2383f589cbb50329da1efd7e7.zip
qt -> tqt conversion:
QT_NO_ASCII_CAST -> TQT_NO_ASCII_CAST QT_NO_STL -> TQT_NO_STL QT_NO_COMPAT -> TQT_NO_COMPAT QT_NO_TRANSLATION -> TQT_NO_TRANSLATION Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc')
-rw-r--r--doc/limits.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/limits.html b/doc/limits.html
index 542417e..68bbe28 100644
--- a/doc/limits.html
+++ b/doc/limits.html
@@ -323,10 +323,10 @@ one TQt class.</P
In a normal TQt installation, every descendant of TQObject inherits two methods
(tr (const char *) and tr (const char *, const char *) from TQObject explicitly
and also overloads these methods via the moc mechanism (by defining Q_OBJECT
-in the class declaration). KDE however is compiled with -DQT_NO_TRANSLATION,
+in the class declaration). KDE however is compiled with -DTQT_NO_TRANSLATION,
which prevents moc from creating the overloading tr() methods, and also produces
side-effects with a normal TQt installation which was compiled without the
--DQT_NO_TRANSLATION switch.
+-DTQT_NO_TRANSLATION switch.
</P>
<P>
PyKDE handles this situation by NOT providing tr() methods (either the inherited