summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/system
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:06:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:06:02 -0600
commitb59a8a75a5383a2bcd3d59a23900878698bf0ff7 (patch)
tree2e627ae5ac7386875c2cb4f2ff69a75b8e8403c1 /ksystemlog/src/system
parentb6d3b22ce8f0b50f77a9f9f2cbf91bef3da6c717 (diff)
downloadksystemlog-b59a8a75a5383a2bcd3d59a23900878698bf0ff7.tar.gz
ksystemlog-b59a8a75a5383a2bcd3d59a23900878698bf0ff7.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'ksystemlog/src/system')
-rw-r--r--ksystemlog/src/system/systemOptions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksystemlog/src/system/systemOptions.cpp b/ksystemlog/src/system/systemOptions.cpp
index c7ab22f..bed499e 100644
--- a/ksystemlog/src/system/systemOptions.cpp
+++ b/ksystemlog/src/system/systemOptions.cpp
@@ -46,15 +46,15 @@ SystemOptions::SystemOptions(TQWidget *parent) :
TQWidget(parent)
{
- TQVBoxLayout* tqlayout = new TQVBoxLayout(this);
- //tqlayout->setAutoAdd(true);
+ TQVBoxLayout* layout = new TQVBoxLayout(this);
+ //layout->setAutoAdd(true);
TQString description= i18n("<qt><p>These files will be analyzed to display <b>System logs</b>. This list also determines the order in which the files are read.</p></qt>");
fileList=new SpecificFileList(this, description);
connect(fileList, TQT_SIGNAL(fileListChanged(int)), this, TQT_SLOT(slotFileListChanged(int)));
- tqlayout->addWidget(fileList);
+ layout->addWidget(fileList);
readConfig();