summaryrefslogtreecommitdiffstats
path: root/src/tsthread
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commitff8c66f117613688a0979d2296cbf6c778136419 (patch)
treee08685a8a074de43b2d5a890eb2038575ddbd119 /src/tsthread
parent362662842b9a5b2c51d442b69b69c06ddb60994c (diff)
downloadgwenview-ff8c66f117613688a0979d2296cbf6c778136419.tar.gz
gwenview-ff8c66f117613688a0979d2296cbf6c778136419.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gwenview@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/tsthread')
-rw-r--r--src/tsthread/tsthread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tsthread/tsthread.cpp b/src/tsthread/tsthread.cpp
index 43b902c..5bbd566 100644
--- a/src/tsthread/tsthread.cpp
+++ b/src/tsthread/tsthread.cpp
@@ -175,7 +175,7 @@ void TSThread::customEvent( TQCustomEvent* ev )
}
bool deleted = false;
deleted_flag = &deleted; // this is like TQGuardedPtr for self, but faster
- int signal_id = e->object->tqmetaObject()->tqfindSignal( normalizeSignalSlot( e->signal ).data() + 1, true );
+ int signal_id = e->object->tqmetaObject()->findSignal( normalizeSignalSlot( e->signal ).data() + 1, true );
if( signal_id >= 0 )
e->object->qt_emit( signal_id, e->args );
else