summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde/kcontrol.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:45:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:45:05 -0600
commitd1248617107f659af9d03cf1ef6d783571a0cba8 (patch)
tree06ce6d250704f2cddca023e81b63f25b19c9aa48 /lilo-config/kde/kcontrol.cpp
parent72fee035e994371467475e062b46287d68fa3f57 (diff)
downloadtdeadmin-d1248617107f659af9d03cf1ef6d783571a0cba8.tar.gz
tdeadmin-d1248617107f659af9d03cf1ef6d783571a0cba8.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'lilo-config/kde/kcontrol.cpp')
-rw-r--r--lilo-config/kde/kcontrol.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp
index 75f514c..e16cbcc 100644
--- a/lilo-config/kde/kcontrol.cpp
+++ b/lilo-config/kde/kcontrol.cpp
@@ -31,16 +31,16 @@
#include <ui.h>
#include <kglobal.h>
#include <klocale.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <kaboutdata.h>
#include <unistd.h>
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();