diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-27 23:18:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-27 23:18:50 +0000 |
commit | 3f4a52a7c4741f2d706dafb64cfc72aaf83eee3b (patch) | |
tree | 6598d8e1bfa5a2b298305608a813997030de5b66 /qtmcop/qiomanager_p.h | |
parent | 006c6dcef6326b789e64b263783fe0e0c99f1a5f (diff) | |
download | arts-3f4a52a7c4741f2d706dafb64cfc72aaf83eee3b.tar.gz arts-3f4a52a7c4741f2d706dafb64cfc72aaf83eee3b.zip |
Proper conversion to TQt interface
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1155713 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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); |