summaryrefslogtreecommitdiffstats
path: root/qtmcop/qiomanager_p.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-27 18:27:11 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-27 18:27:11 +0000
commit6eb92df39ef692dda2e22f42b02772d0afccf3a4 (patch)
treeaa31b57a212ea222e65b1b245f131de00afb2ea7 /qtmcop/qiomanager_p.h
parent0012acab27e855ae820b4dc55cc294908db53f82 (diff)
downloadarts-6eb92df39ef692dda2e22f42b02772d0afccf3a4.tar.gz
arts-6eb92df39ef692dda2e22f42b02772d0afccf3a4.zip
Initial TQT conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1155618 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtmcop/qiomanager_p.h')
-rw-r--r--qtmcop/qiomanager_p.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/qtmcop/qiomanager_p.h b/qtmcop/qiomanager_p.h
index 8877b19..4024d5e 100644
--- a/qtmcop/qiomanager_p.h
+++ b/qtmcop/qiomanager_p.h
@@ -21,7 +21,7 @@
*/
/*
- * BC - Status (2002-03-08): QIOWatch, QTimeWatch.
+ * BC - Status (2002-03-08): QIOWatch, TQTimeWatch.
*
* These classes provide implementation details and not meant to be used
* in any way.
@@ -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,13 +59,13 @@ public slots:
void notify(int socket);
};
-class QTimeWatch : public QObject {
+class TQTimeWatch : public TQObject {
Q_OBJECT
protected:
- QTimer *timer;
+ TQTimer *timer;
TimeNotify *_client;
public:
- QTimeWatch(int milliseconds, TimeNotify *notify);
+ TQTimeWatch(int milliseconds, TimeNotify *notify);
inline TimeNotify *client() { return _client; }
public slots: