diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /noatun-plugins/synaescope/synaescope.cpp | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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; } |