summaryrefslogtreecommitdiffstats
path: root/src/codecs/qtextcodecfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/codecs/qtextcodecfactory.cpp')
-rw-r--r--src/codecs/qtextcodecfactory.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/codecs/qtextcodecfactory.cpp b/src/codecs/qtextcodecfactory.cpp
index 29ee86e0..6a570157 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