summaryrefslogtreecommitdiffstats
path: root/noatun/modules/metatag/metatag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/modules/metatag/metatag.cpp')
-rw-r--r--noatun/modules/metatag/metatag.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/noatun/modules/metatag/metatag.cpp b/noatun/modules/metatag/metatag.cpp
index d0531092..1ec54cbf 100644
--- a/noatun/modules/metatag/metatag.cpp
+++ b/noatun/modules/metatag/metatag.cpp
@@ -7,10 +7,10 @@
#include <noatun/app.h>
#include <noatun/stdaction.h>
-#include <qfile.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qregexp.h>
+#include <tqfile.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqregexp.h>
#include <klocale.h>
#include <kaction.h>
@@ -32,7 +32,7 @@ extern "C"
MetaTagLoader::MetaTagLoader():Plugin()
{
- mAction = new KAction(i18n("&Tag Editor..."), "edit", 0, this, SLOT(editTag()), this, "edittag");
+ mAction = new KAction(i18n("&Tag Editor..."), "edit", 0, this, TQT_SLOT(editTag()), this, "edittag");
napp->pluginActionMenu()->insert(mAction);
}
@@ -52,8 +52,8 @@ void MetaTagLoader::editTag()
e->open(i);
e->show();
- connect(e, SIGNAL(saved(PlaylistItem &)),
- SLOT(update(PlaylistItem &)));
+ connect(e, TQT_SIGNAL(saved(PlaylistItem &)),
+ TQT_SLOT(update(PlaylistItem &)));
}
bool MetaTagLoader::update(PlaylistItem & item)
@@ -94,7 +94,7 @@ bool MetaTagLoader::update(PlaylistItem & item)
return true;
}
-bool MetaTagLoader::setProperty(KFileMetaInfo &info, PlaylistItem &item, const QString &key, const QString &property)
+bool MetaTagLoader::setProperty(KFileMetaInfo &info, PlaylistItem &item, const TQString &key, const TQString &property)
{
KFileMetaInfoItem info_item = info.item(key);