diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:56:24 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:56:24 -0600 |
commit | 43b12e2e89ff2531ae5af4103346a793348a4e1d (patch) | |
tree | 2f15b9c17d62ee6c131990e8607e7e9bf138f027 /knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp | |
parent | def182a745c9f7c9f91600c31d133389d0d59b82 (diff) | |
download | knetworkmanager8-43b12e2e89ff2531ae5af4103346a793348a4e1d.tar.gz knetworkmanager8-43b12e2e89ff2531ae5af4103346a793348a4e1d.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit def182a745c9f7c9f91600c31d133389d0d59b82.
Diffstat (limited to 'knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp')
-rw-r--r-- | knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp b/knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp index 5bab84c..526d5d5 100644 --- a/knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp +++ b/knetworkmanager-0.8/vpn-plugins/vpnc/src/knetworkmanager-vpnc.cpp @@ -77,9 +77,9 @@ VPNAuthenticationWidget* VPNCPlugin::CreateAuthenticationWidget(TQWidget* parent VPNCConfig::VPNCConfig(TQWidget* parent) : VPNConfigWidget(parent) { - TQVBoxLayout* layout = new TQVBoxLayout(this, 1, 1); + TQVBoxLayout* tqlayout = new TQVBoxLayout(this, 1, 1); _vpncWidget = new VPNCConfigWidget(this); - layout->addWidget(_vpncWidget); + tqlayout->addWidget(_vpncWidget); connect(_vpncWidget->pcfImport, TQT_SIGNAL(clicked()), this, TQT_SLOT( pcfImport()) ); @@ -170,7 +170,7 @@ void VPNCConfig::pcfImport() if (getFileConfig("GroupPwd=", line) == 0) { if (strlen(linedata) > 0) { printf("Got configuration parameter GroupPwd with data %s\n\r", linedata); - KMessageBox::information(this, TQString("Your group password is: %1\n\r\n\rYou will need this information when you log on").arg(linedata)); + KMessageBox::information(this, TQString("Your group password is: %1\n\r\n\rYou will need this information when you log on").tqarg(linedata)); } } if (getFileConfig("enc_GroupPwd=", line) == 0) { @@ -200,7 +200,7 @@ void VPNCConfig::pcfImport() } printf("Group password decrypt result: '%s'\n\r", decrypted_result); } - KMessageBox::information(this, TQString("Your group password is: %1\n\r\n\rYou will need this information when you log on").arg(decrypted_result)); + KMessageBox::information(this, TQString("Your group password is: %1\n\r\n\rYou will need this information when you log on").tqarg(decrypted_result)); } } } @@ -344,9 +344,9 @@ bool VPNCConfig::isValid(TQStringList& err_msg) VPNCAuthentication::VPNCAuthentication(TQWidget* parent, char* name) : VPNAuthenticationWidget(parent, name) { - TQVBoxLayout* layout = new TQVBoxLayout(this, 1, 1); + TQVBoxLayout* tqlayout = new TQVBoxLayout(this, 1, 1); _vpncAuth = new VPNCAuthenticationWidget(this); - layout->addWidget(_vpncAuth); + tqlayout->addWidget(_vpncAuth); } VPNCAuthentication::~VPNCAuthentication() |