From 7346aee26bf190a7e70333c40fab4caca847cd27 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:22:56 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- noatun-plugins/synaescope/synaescope.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'noatun-plugins/synaescope/synaescope.cpp') 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; } -- cgit v1.2.1