summaryrefslogtreecommitdiffstats
path: root/kppp/providerdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/providerdb.h')
-rw-r--r--kppp/providerdb.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/kppp/providerdb.h b/kppp/providerdb.h
index 37a737fc..cfeb785f 100644
--- a/kppp/providerdb.h
+++ b/kppp/providerdb.h
@@ -36,92 +36,92 @@
#define PROVIDER_DB
#include <kwizard.h>
-#include <qwidget.h>
+#include <tqwidget.h>
class QLineEdit;
class QListBox;
class KSimpleConfig;
-class PDB_Intro : public QWidget {
+class PDB_Intro : public TQWidget {
Q_OBJECT
public:
- PDB_Intro(QWidget *parent);
+ PDB_Intro(TQWidget *parent);
};
-class PDB_Country : public QWidget {
+class PDB_Country : public TQWidget {
Q_OBJECT
public:
- PDB_Country(QWidget *parent);
+ PDB_Country(TQWidget *parent);
~PDB_Country();
- QListBox *lb;
- QStringList *list;
+ TQListBox *lb;
+ TQStringList *list;
public slots:
void selectionChanged(int);
};
-class PDB_Provider : public QWidget {
+class PDB_Provider : public TQWidget {
Q_OBJECT
public:
- PDB_Provider(QWidget *parent);
+ PDB_Provider(TQWidget *parent);
- void setDir(const QString &d);
- QString getDir();
+ void setDir(const TQString &d);
+ TQString getDir();
- QListBox *lb;
+ TQListBox *lb;
public slots:
void selectionChanged(int);
private:
- QString dir;
+ TQString dir;
};
-class PDB_UserInfo : public QWidget {
+class PDB_UserInfo : public TQWidget {
Q_OBJECT
public:
- PDB_UserInfo(QWidget *parent);
- QString username();
- QString password();
+ PDB_UserInfo(TQWidget *parent);
+ TQString username();
+ TQString password();
void activate();
public slots:
- void textChanged(const QString &);
+ void textChanged(const TQString &);
private:
- QLineEdit *_username;
- QLineEdit *_password;
+ TQLineEdit *_username;
+ TQLineEdit *_password;
};
-class PDB_DialPrefix : public QWidget {
+class PDB_DialPrefix : public TQWidget {
Q_OBJECT
public:
- PDB_DialPrefix(QWidget *parent);
- QString prefix();
+ PDB_DialPrefix(TQWidget *parent);
+ TQString prefix();
void activate();
private:
- QLineEdit *_prefix;
+ TQLineEdit *_prefix;
};
-class PDB_Finished : public QWidget {
+class PDB_Finished : public TQWidget {
Q_OBJECT
public:
- PDB_Finished(QWidget *parent);
+ PDB_Finished(TQWidget *parent);
};
class ProviderDB : public KWizard {
Q_OBJECT
public:
- ProviderDB(QWidget *parent);
+ ProviderDB(TQWidget *parent);
~ProviderDB();
- static QWizard *wiz;
+ static TQWizard *wiz;
public slots:
void pageSelected();
@@ -142,11 +142,11 @@ private:
// Decodes a (some sort of)URL-encoded filename to a human-readable name.
// This is used for the provider database
-void urlDecode(QString &);
+void urlDecode(TQString &);
// Encodes a (some sort of)URL-encoded filename from a human-readable name.
// This is used for the provider database
-void urlEncode(QString &);
+void urlEncode(TQString &);
#endif