diff options
Diffstat (limited to 'noatun/modules/net')
-rw-r--r-- | noatun/modules/net/net.cpp | 4 | ||||
-rw-r--r-- | noatun/modules/net/net.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/noatun/modules/net/net.cpp b/noatun/modules/net/net.cpp index dbdd7e2f..752b2005 100644 --- a/noatun/modules/net/net.cpp +++ b/noatun/modules/net/net.cpp @@ -4,7 +4,7 @@ extern "C" { - KDE_EXPORT Plugin *create_plugin() + TDE_EXPORT Plugin *create_plugin() { return new Net(); } @@ -14,7 +14,7 @@ extern "C" Net::Net() : TQServerSocket(7539, 10), Plugin() { mFDs.setAutoDelete(true); - connect(napp->player(), TQT_SIGNAL(newSong()), TQT_SLOT(newSong())); + connect(napp->player(), TQ_SIGNAL(newSong()), TQ_SLOT(newSong())); } Net::~Net() diff --git a/noatun/modules/net/net.h b/noatun/modules/net/net.h index 68df6e20..4548f63f 100644 --- a/noatun/modules/net/net.h +++ b/noatun/modules/net/net.h @@ -9,7 +9,7 @@ class Net : public TQServerSocket, public Plugin { -Q_OBJECT +TQ_OBJECT public: |