diff options
Diffstat (limited to 'noatun-plugins/alsaplayer/configmodule.cpp')
-rw-r--r-- | noatun-plugins/alsaplayer/configmodule.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun-plugins/alsaplayer/configmodule.cpp b/noatun-plugins/alsaplayer/configmodule.cpp index 664b1cb..0c98af7 100644 --- a/noatun-plugins/alsaplayer/configmodule.cpp +++ b/noatun-plugins/alsaplayer/configmodule.cpp @@ -25,7 +25,7 @@ #include <kconfig.h> #include <tqcheckbox.h> -#include <layout.h> +#include <tqlayout.h> #include "configmodule.h" @@ -41,11 +41,11 @@ AlsaPlayerConfigModule::AlsaPlayerConfigModule(TQObject * parent) { scroll_ = new TQCheckBox(i18n("Scroll song title"), this); - TQVBoxLayout * layout = new TQVBoxLayout(this); + TQVBoxLayout * tqlayout = new TQVBoxLayout(this); - layout->addWidget(scroll_); + tqlayout->addWidget(scroll_); - layout->addStretch(100); + tqlayout->addStretch(100); reopen(); } |