diff options
Diffstat (limited to 'kppp/modemdb.h')
-rw-r--r-- | kppp/modemdb.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kppp/modemdb.h b/kppp/modemdb.h index 92606697..35ddbcff 100644 --- a/kppp/modemdb.h +++ b/kppp/modemdb.h @@ -35,40 +35,40 @@ #ifndef __MODEMDB__H__ #define __MODEMDB__H__ -#include <qdialog.h> -#include <qstringlist.h> -#include <qdict.h> -#include <qptrlist.h> +#include <tqdialog.h> +#include <tqstringlist.h> +#include <tqdict.h> +#include <tqptrlist.h> class KConfig; class QListBox; -typedef QDict<QString> CharDict; +typedef TQDict<TQString> CharDict; class ModemDatabase { public: ModemDatabase(); ~ModemDatabase(); - const QStringList *vendors(); - QStringList *models(QString vendor); + const TQStringList *vendors(); + TQStringList *models(TQString vendor); void save(KConfig *); private: void load(); - void loadModem(const QString & key, CharDict &dict); - QPtrList<CharDict> modems; + void loadModem(const TQString & key, CharDict &dict); + TQPtrList<CharDict> modems; - QStringList *lvendors; + TQStringList *lvendors; KConfig *modemDB; }; -class ModemSelector : public QDialog { +class ModemSelector : public TQDialog { Q_OBJECT public: - ModemSelector(QWidget *parent = 0); + ModemSelector(TQWidget *parent = 0); ~ModemSelector(); private slots: @@ -77,8 +77,8 @@ private slots: void selected(int idx); private: - QPushButton *ok, *cancel; - QListBox *vendor, *model; + TQPushButton *ok, *cancel; + TQListBox *vendor, *model; ModemDatabase *db; }; |