diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:13 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:13 -0600 |
commit | 7423126f28d9e9deb23fad34c88810a2e5c46e55 (patch) | |
tree | 9d3474839b294b433771397c8d92e1bd97d503bc /ksystemlog/src/daemon/daemonOptions.cpp | |
parent | 4ce24ff375ef7af620e75546d1f4b6d71902cd26 (diff) | |
download | ksystemlog-7423126f28d9e9deb23fad34c88810a2e5c46e55.tar.gz ksystemlog-7423126f28d9e9deb23fad34c88810a2e5c46e55.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4ce24ff375ef7af620e75546d1f4b6d71902cd26.
Diffstat (limited to 'ksystemlog/src/daemon/daemonOptions.cpp')
-rw-r--r-- | ksystemlog/src/daemon/daemonOptions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksystemlog/src/daemon/daemonOptions.cpp b/ksystemlog/src/daemon/daemonOptions.cpp index 4719839..e86c6c9 100644 --- a/ksystemlog/src/daemon/daemonOptions.cpp +++ b/ksystemlog/src/daemon/daemonOptions.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ //TQt includes -#include <layout.h> +#include <tqlayout.h> #include <tqvgroupbox.h> #include <tqbuttongroup.h> #include <tqlabel.h> @@ -46,8 +46,8 @@ DaemonOptions::DaemonOptions(TQWidget *parent) : TQWidget(parent) { - TQHBoxLayout *layout = new TQHBoxLayout(this); - layout->setAutoAdd(true); + TQHBoxLayout *tqlayout = new TQHBoxLayout(this); + tqlayout->setAutoAdd(true); TQString description= i18n("<qt><p>These files will be analyzed to display <b>daemons Logs</b>. This list also determine the order in which the files are read.</p></qt>"); fileList=new SpecificFileList(this, description); |