diff options
Diffstat (limited to 'noatun-plugins/synaescope/synaescope.cpp')
-rw-r--r-- | noatun-plugins/synaescope/synaescope.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/noatun-plugins/synaescope/synaescope.cpp b/noatun-plugins/synaescope/synaescope.cpp index 7e4df1c..16a6a2e 100644 --- a/noatun-plugins/synaescope/synaescope.cpp +++ b/noatun-plugins/synaescope/synaescope.cpp @@ -26,12 +26,12 @@ SynaeScope::SynaeScope() : Plugin(), scopeExePath(0) { kdDebug(66666) << k_funcinfo << endl; restarting=false; - connect(&process, SIGNAL(processExited(KProcess *)), - this, SLOT(processExited(KProcess *))); - connect(&process, SIGNAL(receivedStdout(KProcess *,char *,int)), - this, SLOT(receivedStdout(KProcess *,char *,int))); - connect(&process, SIGNAL(receivedStderr(KProcess *,char *,int)), - this, SLOT(receivedStderr(KProcess *,char *,int))); + connect(&process, TQT_SIGNAL(processExited(KProcess *)), + this, TQT_SLOT(processExited(KProcess *))); + connect(&process, TQT_SIGNAL(receivedStdout(KProcess *,char *,int)), + this, TQT_SLOT(receivedStdout(KProcess *,char *,int))); + connect(&process, TQT_SIGNAL(receivedStderr(KProcess *,char *,int)), + this, TQT_SLOT(receivedStderr(KProcess *,char *,int))); } SynaeScope::~SynaeScope() @@ -46,7 +46,7 @@ void SynaeScope::init() mPrefs = new SynaePrefs(this); mPrefs->reopen(); mPrefs->save(); - connect(mPrefs, SIGNAL(configChanged()), this, SLOT(readConfig())); + connect(mPrefs, TQT_SIGNAL(configChanged()), this, TQT_SLOT(readConfig())); scopeExePath = KStandardDirs::findExe("noatunsynaescope.bin"); if (scopeExePath.isEmpty()) @@ -97,13 +97,13 @@ void SynaeScope::processExited(KProcess *) void SynaeScope::receivedStdout(KProcess *, char *buf, int len) { - QCString debugString(buf,len); + TQCString debugString(buf,len); kdDebug(66666) << k_funcinfo << debugString << endl; } void SynaeScope::receivedStderr(KProcess *, char *buf, int len) { - QCString debugString(buf,len); + TQCString debugString(buf,len); kdDebug(66666) << k_funcinfo << debugString << endl; } |