summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/view.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:44 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:44 -0600
commit4ce24ff375ef7af620e75546d1f4b6d71902cd26 (patch)
tree275d4630e2f47cdb24b35a5f64c912a0a5e9d6cc /ksystemlog/src/view.cpp
parentac1454e9bd60df3d06127511669e9d602f0de245 (diff)
downloadksystemlog-4ce24ff375ef7af620e75546d1f4b6d71902cd26.tar.gz
ksystemlog-4ce24ff375ef7af620e75546d1f4b6d71902cd26.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'ksystemlog/src/view.cpp')
-rw-r--r--ksystemlog/src/view.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksystemlog/src/view.cpp b/ksystemlog/src/view.cpp
index 19767cf..8fb0192 100644
--- a/ksystemlog/src/view.cpp
+++ b/ksystemlog/src/view.cpp
@@ -20,7 +20,7 @@
//TQt includes
#include <tqpainter.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqhbox.h>
#include <tqlabel.h>
#include <tqstring.h>
@@ -64,7 +64,7 @@ View::View(TQWidget *parent) :
firstLoad(true)
{
- // setup our tqlayout manager to automatically add our widgets
+ // setup our layout manager to automatically add our widgets
TQVBoxLayout* topLayout = new TQVBoxLayout(this);
topLayout->setAutoAdd(true);
@@ -72,7 +72,7 @@ View::View(TQWidget *parent) :
#if defined(KDE_MAKE_VERSION) && TDE_VERSION >= KDE_MAKE_VERSION(3,3,0)
filterBar=new TQHBox(this);
filterBar->setSpacing(5);
- filterBar->tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Fixed ) );
+ filterBar->setSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Fixed ) );
clearSearch=new KToolBarButton( TQApplication::reverseLayout() ? "clear_left" : "locationbar_erase", 0, filterBar);
@@ -210,7 +210,7 @@ void View::setColumns(LogViewColumns* list) {
TQString group="List";
group.append(logManager->getIndex());
- //We first restore the tqlayout from the config
+ //We first restore the layout from the config
table->restoreLayout(configXT->config(), group);
//Then we delete it from config, to avoid reloading problem