summaryrefslogtreecommitdiffstats
path: root/libtdepim/weaverextensions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libtdepim/weaverextensions.cpp')
-rw-r--r--libtdepim/weaverextensions.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/libtdepim/weaverextensions.cpp b/libtdepim/weaverextensions.cpp
index 9859b6d6..01d68ff7 100644
--- a/libtdepim/weaverextensions.cpp
+++ b/libtdepim/weaverextensions.cpp
@@ -1,5 +1,4 @@
-/* -*- C++ -*-
-
+/*
This file implements the Weaver Extensions basics.
$ Author: Mirko Boehm $
@@ -26,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()