summaryrefslogtreecommitdiffstats
path: root/qtmcop/qiomanager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-27 18:38:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-27 18:38:43 +0000
commit006c6dcef6326b789e64b263783fe0e0c99f1a5f (patch)
treea93dcb4e243b31412c692583fc06a3c792a99e26 /qtmcop/qiomanager.h
parent6eb92df39ef692dda2e22f42b02772d0afccf3a4 (diff)
downloadarts-006c6dcef6326b789e64b263783fe0e0c99f1a5f.tar.gz
arts-006c6dcef6326b789e64b263783fe0e0c99f1a5f.zip
Revert previous commit...some bugs crept in since last build test a week ago and I woul prefer to fix them over the next few days before commiting this patch set.
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1155623 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 3ab488c..3eafe51 100644
--- a/qtmcop/qiomanager.h
+++ b/qtmcop/qiomanager.h
@@ -30,20 +30,20 @@
#define QIOMANAGER_H
#include "iomanager.h"
-#include <tqobject.h>
-#include <tqtimer.h>
-#include <tqsocketnotifier.h>
+#include <qobject.h>
+#include <qtimer.h>
+#include <qsocketnotifier.h>
#include <list>
#include "arts_export.h"
namespace Arts {
class QIOWatch;
-class TQTimeWatch;
+class QTimeWatch;
/**
- * 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
+ * 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
* usual way to set it up is:
*
* <pre>
@@ -59,13 +59,13 @@ class TQTimeWatch;
class ARTS_EXPORT QIOManager : public IOManager {
protected:
friend class QIOWatch;
- friend class TQTimeWatch;
+ friend class QTimeWatch;
std::list<QIOWatch *> fdList;
- std::list<TQTimeWatch *> timeList;
+ std::list<QTimeWatch *> timeList;
void dispatch(QIOWatch *ioWatch);
- void dispatch(TQTimeWatch *timeWatch);
+ void dispatch(QTimeWatch *timeWatch);
public:
QIOManager();