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/profileracoonoptions.cpp | |
parent | d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (diff) | |
download | kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.tar.gz kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.zip |
Initial TQt conversion
Diffstat (limited to 'src/profileracoonoptions.cpp')
-rw-r--r-- | src/profileracoonoptions.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/profileracoonoptions.cpp b/src/profileracoonoptions.cpp index c2368f7..cc060a4 100644 --- a/src/profileracoonoptions.cpp +++ b/src/profileracoonoptions.cpp @@ -22,34 +22,34 @@ #include <klineedit.h> #include <klocale.h> #include <kcombobox.h> -#include <qcheckbox.h> -#include <qtooltip.h> -#include <qlabel.h> +#include <tqcheckbox.h> +#include <tqtooltip.h> +#include <tqlabel.h> #include "widgetnotifyhelper.h" #include <iostream> -ProfileRacoonOptions::ProfileRacoonOptions(QWidget *parent) +ProfileRacoonOptions::ProfileRacoonOptions(TQWidget *parent) : ProfileRacoonOptionsBase(parent) { WidgetNotifyHelper h; h.setupChangedAction(this); dialogModified=false; - QToolTip::add( RemoteIdTypeCombobox, i18n("<b>Remote ID type</b><br><table>" + TQToolTip::add( RemoteIdTypeCombobox, i18n("<b>Remote ID type</b><br><table>" "<tr><td>none:</td><td>No ID</td></tr>" "<tr><td>address:</td><td>The type is the IP address. This is the default type if you do not specify an identifier to use</td></tr>" - "<tr><td>user_fqdn:</td><td>The type is a USER_FQDN (user fully-qualified domain name)</td></tr>" - "<tr><td>fqdn:</td><td>The type is a FQDN (fully-qualified domain name)</td></tr>" + "<tr><td>user_fqdn:</td><td>The type is a USER_FTQDN (user fully-qualified domain name)</td></tr>" + "<tr><td>fqdn:</td><td>The type is a FTQDN (fully-qualified domain name)</td></tr>" "<tr><td>keyid (file):</td><td>The type is a KEY_ID, read from the file</td></tr>" "<tr><td>keyid:</td><td>The type is a KEY_ID, specified in field</td></tr>" "<tr><td>asn1dn:</td><td>The type is an ASN.1 distinguished name. If empty, DN from the Subject field in the certificate will be used" "<table>")); - QToolTip::add( LocalIdTypeCombobox, i18n("<b>Local ID type</b><br><table>" + TQToolTip::add( LocalIdTypeCombobox, i18n("<b>Local ID type</b><br><table>" "<tr><td>none:</td><td>No ID</td></tr>" "<tr><td>address:</td><td>The type is the IP address. This is the default type if you do not specify an identifier to use</td></tr>" - "<tr><td>user_fqdn:</td><td>The type is a USER_FQDN (user fully-qualified domain name)</td></tr>" - "<tr><td>fqdn:</td><td>The type is a FQDN (fully-qualified domain name)</td></tr>" + "<tr><td>user_fqdn:</td><td>The type is a USER_FTQDN (user fully-qualified domain name)</td></tr>" + "<tr><td>fqdn:</td><td>The type is a FTQDN (fully-qualified domain name)</td></tr>" "<tr><td>keyid (file):</td><td>The type is a KEY_ID, read from the file</td></tr>" "<tr><td>keyid:</td><td>The type is a KEY_ID, specified in field</td></tr>" "<tr><td>asn1dn:</td><td>The type is an ASN.1 distinguished name. If empty, DN from the Subject field in the certificate will be used" @@ -62,7 +62,7 @@ ProfileRacoonOptions::ProfileRacoonOptions(QWidget *parent) ProfileRacoonOptions::~ProfileRacoonOptions() {} -void ProfileRacoonOptions::localIDTypeToggled(const QString& text) +void ProfileRacoonOptions::localIDTypeToggled(const TQString& text) { if (text == "none") { @@ -83,7 +83,7 @@ void ProfileRacoonOptions::dialogChanged() } -void ProfileRacoonOptions::remoteIDTypeToggled(const QString& text) +void ProfileRacoonOptions::remoteIDTypeToggled(const TQString& text) { if (text == "none") { |