diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | d0be1721b4656109c9e21cc0ecb6f23b343b7c26 (patch) | |
tree | 211c399f4274325783e6f9995153aac359876116 /kppp/edit.cpp | |
parent | 1fff1cf07591b1226eb568e95283091eedbeff1d (diff) | |
download | tdenetwork-d0be1721b4656109c9e21cc0ecb6f23b343b7c26.tar.gz tdenetwork-d0be1721b4656109c9e21cc0ecb6f23b343b7c26.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/edit.cpp')
-rw-r--r-- | kppp/edit.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kppp/edit.cpp b/kppp/edit.cpp index e330db7f..e9f049ab 100644 --- a/kppp/edit.cpp +++ b/kppp/edit.cpp @@ -487,12 +487,12 @@ IPWidget::IPWidget( TQWidget *tqparent, bool isnewaccount, const char *name ) "If unsure, contact your Internet Service Provider"); ipLayout->addWidget(sub_label, 1, 0); - subnettqmask_l = new IPLineEdit(ipWidget); - sub_label->setBuddy(subnettqmask_l); - ipLayout->addWidget(subnettqmask_l, 1, 1); + subnetmask_l = new IPLineEdit(ipWidget); + sub_label->setBuddy(subnetmask_l); + ipLayout->addWidget(subnetmask_l, 1, 1); TQWhatsThis::add(sub_label,tmp); - TQWhatsThis::add(subnettqmask_l,tmp); + TQWhatsThis::add(subnetmask_l,tmp); autoname = new TQCheckBox(i18n("&Auto-configure hostname from this IP"), tqparent); autoname->setChecked(gpppdata.autoname()); @@ -523,7 +523,7 @@ IPWidget::IPWidget( TQWidget *tqparent, bool isnewaccount, const char *name ) } else { ipaddress_l->setText(gpppdata.ipaddr()); - subnettqmask_l->setText(gpppdata.subnettqmask()); + subnetmask_l->setText(gpppdata.subnettqmask()); staticadd_rb->setChecked(true); autoname->setChecked(false); } @@ -560,7 +560,7 @@ void IPWidget::save() { gpppdata.setSubnettqmask("0.0.0.0"); } else { gpppdata.setIpaddr(ipaddress_l->text()); - gpppdata.setSubnettqmask(subnettqmask_l->text()); + gpppdata.setSubnettqmask(subnetmask_l->text()); } gpppdata.setAutoname(autoname->isChecked()); } @@ -571,13 +571,13 @@ void IPWidget::hitIPSelect( int i ) { ipaddress_label->setEnabled(false); sub_label->setEnabled(false); ipaddress_l->setEnabled(false); - subnettqmask_l->setEnabled(false); + subnetmask_l->setEnabled(false); } else { ipaddress_label->setEnabled(true); sub_label->setEnabled(true); ipaddress_l->setEnabled(true); - subnettqmask_l->setEnabled(true); + subnetmask_l->setEnabled(true); } } |