diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:32:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:32:44 -0600 |
commit | 4ce24ff375ef7af620e75546d1f4b6d71902cd26 (patch) | |
tree | 275d4630e2f47cdb24b35a5f64c912a0a5e9d6cc /ksystemlog/src/daemon/daemonOptions.cpp | |
parent | ac1454e9bd60df3d06127511669e9d602f0de245 (diff) | |
download | ksystemlog-4ce24ff375ef7af620e75546d1f4b6d71902cd26.tar.gz ksystemlog-4ce24ff375ef7af620e75546d1f4b6d71902cd26.zip |
Rename a number of old tq methods that are no longer tq specific
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 e86c6c9..4719839 100644 --- a/ksystemlog/src/daemon/daemonOptions.cpp +++ b/ksystemlog/src/daemon/daemonOptions.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ //TQt includes -#include <tqlayout.h> +#include <layout.h> #include <tqvgroupbox.h> #include <tqbuttongroup.h> #include <tqlabel.h> @@ -46,8 +46,8 @@ DaemonOptions::DaemonOptions(TQWidget *parent) : TQWidget(parent) { - TQHBoxLayout *tqlayout = new TQHBoxLayout(this); - tqlayout->setAutoAdd(true); + TQHBoxLayout *layout = new TQHBoxLayout(this); + layout->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); |