diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/codecs/qtextcodecfactory.cpp | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/codecs/qtextcodecfactory.cpp')
-rw-r--r-- | src/codecs/qtextcodecfactory.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/codecs/qtextcodecfactory.cpp b/src/codecs/qtextcodecfactory.cpp index 29ee86e0f..6a570157b 100644 --- a/src/codecs/qtextcodecfactory.cpp +++ b/src/codecs/qtextcodecfactory.cpp @@ -40,9 +40,9 @@ #include "ntqtextcodecfactory.h" -#ifndef QT_NO_TEXTCODEC +#ifndef TQT_NO_TEXTCODEC -#ifndef QT_NO_COMPONENT +#ifndef TQT_NO_COMPONENT #include "ntqapplication.h" #include "ntqcleanuphandler.h" #include <private/qpluginmanager_p.h> @@ -83,14 +83,14 @@ static void create_manager() cleanup_manager.set( &manager ); } -#endif // QT_NO_COMPONENT +#endif // TQT_NO_COMPONENT TQTextCodec *TQTextCodecFactory::createForName(const TQString &name) { TQTextCodec *codec = 0; -#ifndef QT_NO_COMPONENT +#ifndef TQT_NO_COMPONENT // make sure the manager is created create_manager(); @@ -101,7 +101,7 @@ TQTextCodec *TQTextCodecFactory::createForName(const TQString &name) if (iface) codec = iface->createForName(name); -#endif // QT_NO_COMPONENT +#endif // TQT_NO_COMPONENT return codec; } @@ -111,7 +111,7 @@ TQTextCodec *TQTextCodecFactory::createForMib(int mib) { TQTextCodec *codec = 0; -#ifndef QT_NO_COMPONENT +#ifndef TQT_NO_COMPONENT // make sure the manager is created create_manager(); @@ -122,10 +122,10 @@ TQTextCodec *TQTextCodecFactory::createForMib(int mib) if (iface) codec = iface->createForMib(mib); -#endif // QT_NO_COMPONENT +#endif // TQT_NO_COMPONENT return codec; } -#endif // QT_NO_TEXTCODEC +#endif // TQT_NO_TEXTCODEC |