diff options
author | Timothy Pearson <[email protected]> | 2011-12-06 14:15:01 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-06 14:15:01 -0600 |
commit | 1b89319fd93b88313cab40f1e9de24c067b04efb (patch) | |
tree | 80132996de993c3dcab4040864d7729842875b2d /src/vpntypesinfodialog.h | |
parent | d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (diff) | |
download | kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.tar.gz kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.zip |
Initial TQt conversion
Diffstat (limited to 'src/vpntypesinfodialog.h')
-rw-r--r-- | src/vpntypesinfodialog.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/vpntypesinfodialog.h b/src/vpntypesinfodialog.h index 4b4fdcb..1c31ee9 100644 --- a/src/vpntypesinfodialog.h +++ b/src/vpntypesinfodialog.h @@ -20,7 +20,7 @@ #ifndef VPNTYPESINFODIALOG_H #define VPNTYPESINFODIALOG_H -#include <qptrlist.h> +#include <tqptrlist.h> #include <kdialogbase.h> #include "kvpnc.h" #include "kvpncconfig.h" @@ -32,19 +32,19 @@ class VpnTypesInfoDialog: public KDialogBase { public: - VpnTypesInfoDialog(KVpncConfig *GlobalConfig, QWidget *parent = 0, const char *name = 0); + VpnTypesInfoDialog(KVpncConfig *GlobalConfig, TQWidget *parent = 0, const char *name = 0); ToolsInfoWidgetBase *main; ~VpnTypesInfoDialog(); struct VpnTypeInfo { - QString VpnType; - QString Name; - QString state; + TQString VpnType; + TQString Name; + TQString state; bool VpnState; - QString Comment; - QStringList Requirements; + TQString Comment; + TQStringList Requirements; }; - QPtrList<VpnTypeInfo> *VpnTypesInfoList; + TQPtrList<VpnTypeInfo> *VpnTypesInfoList; }; |