diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-06 14:15:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-06 14:15:01 -0600 |
commit | 1b89319fd93b88313cab40f1e9de24c067b04efb (patch) | |
tree | 80132996de993c3dcab4040864d7729842875b2d /src/importcertificatedialog.h | |
parent | d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (diff) | |
download | kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.tar.gz kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.zip |
Initial TQt conversion
Diffstat (limited to 'src/importcertificatedialog.h')
-rw-r--r-- | src/importcertificatedialog.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/importcertificatedialog.h b/src/importcertificatedialog.h index b1a05e5..932723c 100644 --- a/src/importcertificatedialog.h +++ b/src/importcertificatedialog.h @@ -21,9 +21,9 @@ #define IMPORTCERTIFICATEDIALOG_H #include "importcertificatedialogbase.h" -#include <qprocess.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqprocess.h> +#include <tqstring.h> +#include <tqstringlist.h> #include <kdialogbase.h> #include "kvpncconfig.h" @@ -32,21 +32,22 @@ */ class ImportCertificateDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - ImportCertificateDialog(QWidget *parent, const char* caption, KVpncConfig *GlobalConfig); + ImportCertificateDialog(TQWidget *parent, const char* caption, KVpncConfig *GlobalConfig); ~ImportCertificateDialog(); void canAccept(); - QString filename; - QString certpath; - QString importpassword; - QString privatekeypassword; - QString privatekeyagainpassword; - QString pathToOpenSSL; - QString certHash; - QString certName; - QString CertFullPath; - QString CaCertFullPath; + TQString filename; + TQString certpath; + TQString importpassword; + TQString privatekeypassword; + TQString privatekeyagainpassword; + TQString pathToOpenSSL; + TQString certHash; + TQString certName; + TQString CertFullPath; + TQString CaCertFullPath; bool importOk; bool doHash; bool importSuccess; @@ -55,12 +56,12 @@ class ImportCertificateDialog : public KDialogBase { enum ImportType {pkcs12_freeswan=0,pkcs12_racoon=1,ca_der=2,pkcs12_openvpn=3,cisco=4, ciscoca=5, ciscouserca=6}; protected: - QProcess *ImportProcess; + TQProcess *ImportProcess; KVpncConfig *GlobalConfig; bool done; bool error_found; int askpasscount; - QStringList *env; + TQStringList *env; public slots: void accept(); |