diff options
Diffstat (limited to 'qtmcop/qiomanager_p.h')
-rw-r--r-- | qtmcop/qiomanager_p.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qtmcop/qiomanager_p.h b/qtmcop/qiomanager_p.h index 8877b19..b4fea29 100644 --- a/qtmcop/qiomanager_p.h +++ b/qtmcop/qiomanager_p.h @@ -31,24 +31,24 @@ #define QIOMANAGER_P_H #include "iomanager.h" -#include <qobject.h> -#include <qtimer.h> -#include <qsocketnotifier.h> +#include <tqobject.h> +#include <tqtimer.h> +#include <tqsocketnotifier.h> #include <list> namespace Arts { -class QIOWatch : public QObject { +class QIOWatch : public TQObject { Q_OBJECT protected: - QSocketNotifier *qsocketnotify; + TQSocketNotifier *qsocketnotify; int _fd; int _type; IONotify *_client; bool _reentrant; public: - QIOWatch(int fd, int type, IONotify *notify, QSocketNotifier::Type qtype, + QIOWatch(int fd, int type, IONotify *notify, TQSocketNotifier::Type qtype, bool reentrant); inline IONotify *client() { return _client; } @@ -59,10 +59,10 @@ public slots: void notify(int socket); }; -class QTimeWatch : public QObject { +class QTimeWatch : public TQObject { Q_OBJECT protected: - QTimer *timer; + TQTimer *timer; TimeNotify *_client; public: QTimeWatch(int milliseconds, TimeNotify *notify); |