summaryrefslogtreecommitdiffstats
path: root/kresources/egroupware/synchronizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/egroupware/synchronizer.h')
-rw-r--r--kresources/egroupware/synchronizer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kresources/egroupware/synchronizer.h b/kresources/egroupware/synchronizer.h
index feac6bf3..ccb34d7c 100644
--- a/kresources/egroupware/synchronizer.h
+++ b/kresources/egroupware/synchronizer.h
@@ -22,7 +22,7 @@
#ifndef SYNCHRONIZER_H
#define SYNCHRONIZER_H
-#include <qobject.h>
+#include <tqobject.h>
/**
A small helper class which blocks an asynchronous operation (e.g. a KIO request)
@@ -37,8 +37,8 @@
...
job = KIO::file_copy( url, file, -1, true );
- connect( job, SIGNAL( result( KIO::Job * ) ),
- SLOT( slotResult( KIO::Job * ) ) );
+ connect( job, TQT_SIGNAL( result( KIO::Job * ) ),
+ TQT_SLOT( slotResult( KIO::Job * ) ) );
mSynchronizer.start(); // will block here until the slot was called
...