diff options
Diffstat (limited to 'noatun/modules/voiceprint')
-rw-r--r-- | noatun/modules/voiceprint/prefs.h | 2 | ||||
-rw-r--r-- | noatun/modules/voiceprint/voiceprint.cpp | 4 | ||||
-rw-r--r-- | noatun/modules/voiceprint/voiceprint.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/noatun/modules/voiceprint/prefs.h b/noatun/modules/voiceprint/prefs.h index 16b8032f..c317cc45 100644 --- a/noatun/modules/voiceprint/prefs.h +++ b/noatun/modules/voiceprint/prefs.h @@ -8,7 +8,7 @@ class KColorButton; class Prefs : public CModule { -Q_OBJECT +TQ_OBJECT public: Prefs(TQObject* parent); diff --git a/noatun/modules/voiceprint/voiceprint.cpp b/noatun/modules/voiceprint/voiceprint.cpp index c0b1c859..f9f65105 100644 --- a/noatun/modules/voiceprint/voiceprint.cpp +++ b/noatun/modules/voiceprint/voiceprint.cpp @@ -9,7 +9,7 @@ extern "C" { - KDE_EXPORT Plugin *create_plugin() + TDE_EXPORT Plugin *create_plugin() { return new VoicePrint(); } @@ -35,7 +35,7 @@ VoicePrint::~VoicePrint() void VoicePrint::init() { - Prefs *p=new Prefs(TQT_TQOBJECT(this)); + Prefs *p=new Prefs(this); p->reopen(); p->save(); resizeEvent(0); diff --git a/noatun/modules/voiceprint/voiceprint.h b/noatun/modules/voiceprint/voiceprint.h index 0440e8c4..b3ce0d29 100644 --- a/noatun/modules/voiceprint/voiceprint.h +++ b/noatun/modules/voiceprint/voiceprint.h @@ -5,7 +5,7 @@ class VoicePrint : public TQWidget, public MonoFFTScope, public Plugin { -Q_OBJECT +TQ_OBJECT public: |