diff options
Diffstat (limited to 'noatun-plugins/tyler/tyler.cpp')
-rw-r--r-- | noatun-plugins/tyler/tyler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noatun-plugins/tyler/tyler.cpp b/noatun-plugins/tyler/tyler.cpp index 7990ae2..ad00cac 100644 --- a/noatun-plugins/tyler/tyler.cpp +++ b/noatun-plugins/tyler/tyler.cpp @@ -21,7 +21,7 @@ extern "C" Plugin *create_plugin() const int Tyler::bufferSize = 512; Tyler::Tyler() - : QObject() + : TQObject() , StereoScope(25) , Plugin() { @@ -37,7 +37,7 @@ Tyler::~Tyler() void Tyler::init() { process << KStandardDirs::findExe("noatuntyler.bin"); - connect(&process, SIGNAL(processExited(KProcess *)), this, SLOT(processExited(KProcess *))); + connect(&process, TQT_SIGNAL(processExited(KProcess *)), this, TQT_SLOT(processExited(KProcess *))); // Note that process.start() will fail if findExe fails, so there's no real need // for two separate checks. |