diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
commit | 47c8a359c5276062c4bc17f0e82410f29081b502 (patch) | |
tree | 2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kppp/modeminfo.h | |
parent | 6f82532777a35e0e60bbd2b290b2e93e646f349b (diff) | |
download | tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/modeminfo.h')
-rw-r--r-- | kppp/modeminfo.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kppp/modeminfo.h b/kppp/modeminfo.h index dae93161..0298ecdd 100644 --- a/kppp/modeminfo.h +++ b/kppp/modeminfo.h @@ -28,21 +28,21 @@ #ifndef _MODEMINFO_H_ #define _MODEMINFO_H_ -#include <qdialog.h> -#include <qlineedit.h> -#include <qpushbutton.h> -#include <qlabel.h> -#include <qevent.h> -#include <qtimer.h> +#include <tqdialog.h> +#include <tqlineedit.h> +#include <tqpushbutton.h> +#include <tqlabel.h> +#include <tqevent.h> +#include <tqtimer.h> #include <kprogress.h> const int NUM_OF_ATI = 8; -class ModemTransfer : public QDialog { +class ModemTransfer : public TQDialog { Q_OBJECT public: - ModemTransfer(QWidget *parent=0, const char *name=0); + ModemTransfer(TQWidget *parent=0, const char *name=0); public slots: void init(); @@ -56,33 +56,33 @@ private: void ati_done(); protected: - void closeEvent(QCloseEvent *e); + void closeEvent(TQCloseEvent *e); private: int step; - QString readbuffer; + TQString readbuffer; - QPushButton *cancel; + TQPushButton *cancel; KProgress *progressBar; - QLabel *statusBar; + TQLabel *statusBar; - QTimer *timeout_timer; - QTimer *scripttimer; - QString ati_query_strings[NUM_OF_ATI]; + TQTimer *timeout_timer; + TQTimer *scripttimer; + TQString ati_query_strings[NUM_OF_ATI]; }; -class ModemInfo : public QDialog { +class ModemInfo : public TQDialog { Q_OBJECT public: - ModemInfo(QWidget *parent=0, const char *name=0); + ModemInfo(TQWidget *parent=0, const char *name=0); public: - void setAtiString(int num, QString s); + void setAtiString(int num, TQString s); private: - QLabel *ati_label[NUM_OF_ATI]; - QLineEdit *ati_label_result[NUM_OF_ATI]; + TQLabel *ati_label[NUM_OF_ATI]; + TQLineEdit *ati_label_result[NUM_OF_ATI]; }; #endif |