summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:17:29 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 20:26:21 +0200
commita5f534d9d7a9878b84c7d860943cd2b9714deb49 (patch)
tree52f751cf89f832fefae7e8b5b8567a684b2f1d51 /lilo-config/kde
parent239cc9b83ce0d6dd5216aeb01a82e0d23a0a3595 (diff)
downloadtdeadmin-a5f534d9d7a9878b84c7d860943cd2b9714deb49.tar.gz
tdeadmin-a5f534d9d7a9878b84c7d860943cd2b9714deb49.zip
Rename obsolete tq methods to standard names
(cherry picked from commit 38a31bafc0c0c68b4cb7c0606bac55bbef7c8b69)
Diffstat (limited to 'lilo-config/kde')
-rw-r--r--lilo-config/kde/kcontrol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp
index 75f514c..846edc8 100644
--- a/lilo-config/kde/kcontrol.cpp
+++ b/lilo-config/kde/kcontrol.cpp
@@ -38,9 +38,9 @@
KControl::KControl(TQWidget *parent, const char *name)
: KCModule(parent, name)
{
- TQVBoxLayout *tqlayout=new TQVBoxLayout(this);
+ TQVBoxLayout *layout=new TQVBoxLayout(this);
m=new MainWidget(this, name);
- tqlayout->addWidget(m);
+ layout->addWidget(m);
connect(m, TQT_SIGNAL(configChanged()), TQT_SLOT(configChanged()));
if (getuid() != 0) {
m->makeReadOnly();