summaryrefslogtreecommitdiffstats
path: root/qtmcop/qiomanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'qtmcop/qiomanager.h')
-rw-r--r--qtmcop/qiomanager.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/qtmcop/qiomanager.h b/qtmcop/qiomanager.h
index 3eafe51..3ab488c 100644
--- a/qtmcop/qiomanager.h
+++ b/qtmcop/qiomanager.h
@@ -30,20 +30,20 @@
#define QIOMANAGER_H
#include "iomanager.h"
-#include <qobject.h>
-#include <qtimer.h>
-#include <qsocketnotifier.h>
+#include <tqobject.h>
+#include <tqtimer.h>
+#include <tqsocketnotifier.h>
#include <list>
#include "arts_export.h"
namespace Arts {
class QIOWatch;
-class QTimeWatch;
+class TQTimeWatch;
/**
- * QIOManager performs MCOP I/O inside the Qt event loop. This way, you will
- * be able to receive requests and notifications inside Qt application. The
+ * QIOManager performs MCOP I/O inside the TQt event loop. This way, you will
+ * be able to receive requests and notifications inside TQt application. The
* usual way to set it up is:
*
* <pre>
@@ -59,13 +59,13 @@ class QTimeWatch;
class ARTS_EXPORT QIOManager : public IOManager {
protected:
friend class QIOWatch;
- friend class QTimeWatch;
+ friend class TQTimeWatch;
std::list<QIOWatch *> fdList;
- std::list<QTimeWatch *> timeList;
+ std::list<TQTimeWatch *> timeList;
void dispatch(QIOWatch *ioWatch);
- void dispatch(QTimeWatch *timeWatch);
+ void dispatch(TQTimeWatch *timeWatch);
public:
QIOManager();