diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-27 18:27:11 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-27 18:27:11 +0000 |
commit | 6eb92df39ef692dda2e22f42b02772d0afccf3a4 (patch) | |
tree | aa31b57a212ea222e65b1b245f131de00afb2ea7 /qtmcop/qiomanager.h | |
parent | 0012acab27e855ae820b4dc55cc294908db53f82 (diff) | |
download | arts-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.h')
-rw-r--r-- | qtmcop/qiomanager.h | 18 |
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(); |