diff options
Diffstat (limited to 'noatun/modules/htmlexport')
-rw-r--r-- | noatun/modules/htmlexport/htmlexport.cpp | 4 | ||||
-rw-r--r-- | noatun/modules/htmlexport/htmlexport.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/noatun/modules/htmlexport/htmlexport.cpp b/noatun/modules/htmlexport/htmlexport.cpp index bc2399cc..3facc98c 100644 --- a/noatun/modules/htmlexport/htmlexport.cpp +++ b/noatun/modules/htmlexport/htmlexport.cpp @@ -7,7 +7,7 @@ extern "C" { - KDE_EXPORT Plugin *create_plugin() + TDE_EXPORT Plugin *create_plugin() { return new HTMLExport(); } @@ -18,7 +18,7 @@ HTMLExport::HTMLExport(): TQObject(0, "HTMLExport"), Plugin() NOATUNPLUGINC(HTMLExport); mAction = new TDEAction(i18n("&Export Playlist..."), "document-save-as", 0, - this, TQT_SLOT(slotExport()), this, "exportlist"); + this, TQ_SLOT(slotExport()), this, "exportlist"); napp->pluginActionMenu()->insert(mAction); new Prefs(this); diff --git a/noatun/modules/htmlexport/htmlexport.h b/noatun/modules/htmlexport/htmlexport.h index c5928ed7..f2262faf 100644 --- a/noatun/modules/htmlexport/htmlexport.h +++ b/noatun/modules/htmlexport/htmlexport.h @@ -33,7 +33,7 @@ class TDEAction; class HTMLExport : public TQObject, public Plugin { -Q_OBJECT +TQ_OBJECT NOATUNPLUGIND public: @@ -54,7 +54,7 @@ private slots: class Prefs : public CModule { -Q_OBJECT +TQ_OBJECT public: Prefs(TQObject *parent); |