summaryrefslogtreecommitdiffstats
path: root/kppp/modeminfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/modeminfo.h')
-rw-r--r--kppp/modeminfo.h40
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