diff options
Diffstat (limited to 'src/knemod/interfacestatusdialog.h')
-rw-r--r-- | src/knemod/interfacestatusdialog.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/knemod/interfacestatusdialog.h b/src/knemod/interfacestatusdialog.h index 3b15362..74f2b54 100644 --- a/src/knemod/interfacestatusdialog.h +++ b/src/knemod/interfacestatusdialog.h @@ -20,11 +20,11 @@ #ifndef INTERFACESTATUSDIALOG_H #define INTERFACESTATUSDIALOG_H -#include <qwidget.h> +#include <tqwidget.h> #include "interfacestatusdlg.h" -class QTimer; +class TQTimer; class Interface; /** @@ -38,12 +38,13 @@ class Interface; class InterfaceStatusDialog : public InterfaceStatusDlg { Q_OBJECT + TQ_OBJECT public: /** * Default Constructor */ InterfaceStatusDialog( Interface* interface, - QWidget* parent = 0L, const char* name = 0L ); + TQWidget* tqparent = 0L, const char* name = 0L ); /** * Default Destructor @@ -79,10 +80,10 @@ private slots: void updateDialog(); private: - QPoint mPos; + TQPoint mPos; bool mPosInitialized; - QTimer* mTimer; + TQTimer* mTimer; Interface* mInterface; }; |