summaryrefslogtreecommitdiffstats
path: root/libtdepim/weaverextensions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:33:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-16 19:01:53 +0900
commitb0f8eef013163b2098c2bb07e93cb9b194338b80 (patch)
treec35221250699030822f3c616b393f77e1ce47036 /libtdepim/weaverextensions.cpp
parentc2138cbe92142437d50f2e6cec6f8909da959234 (diff)
downloadtdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.tar.gz
tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'libtdepim/weaverextensions.cpp')
-rw-r--r--libtdepim/weaverextensions.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/libtdepim/weaverextensions.cpp b/libtdepim/weaverextensions.cpp
index ad5b144c..01d68ff7 100644
--- a/libtdepim/weaverextensions.cpp
+++ b/libtdepim/weaverextensions.cpp
@@ -25,14 +25,14 @@ namespace ThreadWeaver {
void WeaverExtension::attach (Weaver *w)
{
- connect (w, TQT_SIGNAL (threadCreated (Thread *) ),
- TQT_SLOT (threadCreated (Thread *) ) );
- connect (w, TQT_SIGNAL (threadDestroyed (Thread *) ),
- TQT_SLOT (threadDestroyed (Thread *) ) );
- connect (w, TQT_SIGNAL (threadBusy (Thread *) ),
- TQT_SLOT (threadBusy (Thread *) ) );
- connect (w, TQT_SIGNAL (threadSuspended (Thread *) ),
- TQT_SLOT (threadSuspended (Thread *) ) );
+ connect (w, TQ_SIGNAL (threadCreated (Thread *) ),
+ TQ_SLOT (threadCreated (Thread *) ) );
+ connect (w, TQ_SIGNAL (threadDestroyed (Thread *) ),
+ TQ_SLOT (threadDestroyed (Thread *) ) );
+ connect (w, TQ_SIGNAL (threadBusy (Thread *) ),
+ TQ_SLOT (threadBusy (Thread *) ) );
+ connect (w, TQ_SIGNAL (threadSuspended (Thread *) ),
+ TQ_SLOT (threadSuspended (Thread *) ) );
}
WeaverExtension::~WeaverExtension()