summaryrefslogtreecommitdiffstats
path: root/kbabel/common/exportplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/common/exportplugin.cpp')
-rw-r--r--kbabel/common/exportplugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbabel/common/exportplugin.cpp b/kbabel/common/exportplugin.cpp
index 99a727f8..327e85d0 100644
--- a/kbabel/common/exportplugin.cpp
+++ b/kbabel/common/exportplugin.cpp
@@ -33,7 +33,7 @@
#include "catalogfileplugin.h"
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include <kdebug.h>
#include <ktrader.h>
@@ -45,7 +45,7 @@ struct KBabel::CatalogExportPluginPrivate
bool _stop;
};
-CatalogExportPlugin::CatalogExportPlugin(QObject* parent, const char* name) : QObject(parent,name)
+CatalogExportPlugin::CatalogExportPlugin(TQObject* parent, const char* name) : TQObject(parent,name)
{
d = new CatalogExportPluginPrivate;
d->_stop=false;
@@ -56,9 +56,9 @@ CatalogExportPlugin::~CatalogExportPlugin()
delete d;
}
-QStringList CatalogExportPlugin::availableExportMimeTypes()
+TQStringList CatalogExportPlugin::availableExportMimeTypes()
{
- QStringList result;
+ TQStringList result;
KTrader::OfferList offers = KTrader::self()->query("KBabelFilter", "exist [X-KDE-Export]");