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/profileipsecoptions.cpp | |
| parent | d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (diff) | |
| download | kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.tar.gz kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.zip | |
Initial TQt conversion
Diffstat (limited to 'src/profileipsecoptions.cpp')
| -rw-r--r-- | src/profileipsecoptions.cpp | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/src/profileipsecoptions.cpp b/src/profileipsecoptions.cpp index 8eb3c82..847cc0a 100644 --- a/src/profileipsecoptions.cpp +++ b/src/profileipsecoptions.cpp @@ -23,14 +23,14 @@  #include <klineedit.h>  #include <klocale.h>  #include <kcombobox.h> -#include <qcheckbox.h> -#include <qgroupbox.h> -#include <qlabel.h> -#include <qwhatsthis.h> +#include <tqcheckbox.h> +#include <tqgroupbox.h> +#include <tqlabel.h> +#include <tqwhatsthis.h>  #include "widgetnotifyhelper.h"  #include <iostream> -ProfileIpsecOptions::ProfileIpsecOptions(QWidget *parent) : ProfileIpsecOptionsBase(parent) +ProfileIpsecOptions::ProfileIpsecOptions(TQWidget *parent) : ProfileIpsecOptionsBase(parent)  {  } @@ -79,7 +79,7 @@ void ProfileIpsecOptions::useEspToogled(bool)  		EspGroupBox->setEnabled(false);  } -void ProfileIpsecOptions::localIDTypeToggled(const QString& text) +void ProfileIpsecOptions::localIDTypeToggled(const TQString& text)  {  	if (text == "asn1dn" || text == i18n("Certificate ID"))  	{ @@ -93,7 +93,7 @@ void ProfileIpsecOptions::localIDTypeToggled(const QString& text)  	}  } -void ProfileIpsecOptions::remoteIDTypeToggled(const QString& text) +void ProfileIpsecOptions::remoteIDTypeToggled(const TQString& text)  {  	if (text == "asn1dn" || text == "none")  	{ @@ -111,14 +111,14 @@ void ProfileIpsecOptions::remoteIDTypeToggled(const QString& text)  void ProfileIpsecOptions::ikeHelpClicked(int,int)  { -	QWhatsThis::display ( i18n("<h1>IPSec IKE algorithms</h1><p>You have to specify the IKE values in the following format:\n<nobr><encryption algorithm>-<authentication algorithm></nobr>\nor\n<nobr><encryption algorithm>-<authentication algorithm>-<diffie helman group></nobr></p>"), QCursor::pos ( ), (QWidget *)IkeHelpActiveLabel); +	TQWhatsThis::display ( i18n("<h1>IPSec IKE algorithms</h1><p>You have to specify the IKE values in the following format:\n<nobr><encryption algorithm>-<authentication algorithm></nobr>\nor\n<nobr><encryption algorithm>-<authentication algorithm>-<diffie helman group></nobr></p>"), TQCursor::pos ( ), (TQWidget *)IkeHelpActiveLabel);  }  void ProfileIpsecOptions::espHelpClicked(int,int)  { -	QWhatsThis::display ( i18n("<h1>IPSec ESP algorithms</h1><nobr>You have to specify the ESP values in the following format:\n<b><encryption algorithm>-<authentication algorithm></nobr>\nor\n<nobr><encryption algorithm>-<authentication algorithm></nobr></p>"), QCursor::pos ( ), (QWidget *)EspHelpActiveLabel); +	TQWhatsThis::display ( i18n("<h1>IPSec ESP algorithms</h1><nobr>You have to specify the ESP values in the following format:\n<b><encryption algorithm>-<authentication algorithm></nobr>\nor\n<nobr><encryption algorithm>-<authentication algorithm></nobr></p>"), TQCursor::pos ( ), (TQWidget *)EspHelpActiveLabel);  } | 
