diff options
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") { |