diff options
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 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(); |