diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 17:59:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 17:59:53 +0900 |
commit | 757f562a48ce1b9f35fbc54f094f3f1e9d92582e (patch) | |
tree | 892cf962cecb602f77d6d72f7fcb036b7fd16308 /src | |
parent | d60977edb2e02b86ea1b2d8d7b32ac03c0229d05 (diff) | |
download | tellico-757f562a48ce1b9f35fbc54f094f3f1e9d92582e.tar.gz tellico-757f562a48ce1b9f35fbc54f094f3f1e9d92582e.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 'src')
-rw-r--r-- | src/rtf2html/rtf2html.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/rtf2html/rtf2html.cpp b/src/rtf2html/rtf2html.cpp index eec9caa..6940608 100644 --- a/src/rtf2html/rtf2html.cpp +++ b/src/rtf2html/rtf2html.cpp @@ -15,9 +15,9 @@ ***************************************************************************/ // force to use QT with STL -#if defined(QT_NO_STL) -# define DISABLE_QT_NO_STL -# undef QT_NO_STL +#if defined(TQT_NO_STL) +# define DISABLE_TQT_NO_STL +# undef TQT_NO_STL #endif #include "rtf2html.h" @@ -535,8 +535,8 @@ TQString RTF2HTML::toHTML() const { return html; } -// restore QT_NO_STL -#if defined(DISABLE_QT_NO_STL) -# undef DISABLE_QT_NO_STL -# define QT_NO_STL +// restore TQT_NO_STL +#if defined(DISABLE_TQT_NO_STL) +# undef DISABLE_TQT_NO_STL +# define TQT_NO_STL #endif |