summaryrefslogtreecommitdiffstats
path: root/src/ui_netparamsedit.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitabbf0b157fa25aac654e0f2d58dd984201fc4059 (patch)
treea09a95fbca379bcfd8d9bdb6be8ecdeb6ca33ebe /src/ui_netparamsedit.cpp
parent197fa69548dda19a02b7d1c3575d6138212e3ca6 (diff)
downloadwlassistant-abbf0b157fa25aac654e0f2d58dd984201fc4059.tar.gz
wlassistant-abbf0b157fa25aac654e0f2d58dd984201fc4059.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/wlassistant@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/ui_netparamsedit.cpp')
-rw-r--r--src/ui_netparamsedit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui_netparamsedit.cpp b/src/ui_netparamsedit.cpp
index ee4b588..1b757a8 100644
--- a/src/ui_netparamsedit.cpp
+++ b/src/ui_netparamsedit.cpp
@@ -34,8 +34,8 @@
#include <kiconloader.h>
-ui_NetParamsEdit::ui_NetParamsEdit(TQWidget* tqparent, const char* name, bool modal, WFlags fl)
- : netProperties(tqparent,name, modal,fl)
+ui_NetParamsEdit::ui_NetParamsEdit(TQWidget* parent, const char* name, bool modal, WFlags fl)
+ : netProperties(parent,name, modal,fl)
{
buttonHelp->hide();
buttonOk->setIconSet( SmallIconSet("ok") );
@@ -97,7 +97,7 @@ void ui_NetParamsEdit::setValues( const WANetParams & np )
ip->setText(np.ip);
broadcast->setText( np.broadcast );
- nettqmask->setText( np.nettqmask );
+ netmask->setText( np.netmask );
gateway->setText( np.gateway );
domain->setText( np.domain );
dns1->setText( np.dns1 );
@@ -129,7 +129,7 @@ WANetParams ui_NetParamsEdit::readNetParams( WANetParams & np )
np.dhcp = radioDhcp->isChecked();
np.ip = ip->text();
np.broadcast = broadcast->text();
- np.nettqmask = nettqmask->text();
+ np.netmask = netmask->text();
np.gateway = gateway->text();
np.domain = domain->text();
np.dns1 = dns1->text();