summaryrefslogtreecommitdiffstats
path: root/kolf/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kolf/config.cpp')
-rw-r--r--kolf/config.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kolf/config.cpp b/kolf/config.cpp
index 0d9aafae..b67e12cd 100644
--- a/kolf/config.cpp
+++ b/kolf/config.cpp
@@ -1,5 +1,5 @@
#include <tqlabel.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <kdialog.h>
#include <klocale.h>
@@ -36,8 +36,8 @@ void Config::changed()
MessageConfig::MessageConfig(TQString text, TQWidget *parent, const char *name)
: Config(parent, name)
{
- TQVBoxLayout *tqlayout = new TQVBoxLayout(this, marginHint(), spacingHint());
- tqlayout->addWidget(new TQLabel(text, this));
+ TQVBoxLayout *layout = new TQVBoxLayout(this, marginHint(), spacingHint());
+ layout->addWidget(new TQLabel(text, this));
}
DefaultConfig::DefaultConfig(TQWidget *parent, const char *name)