summaryrefslogtreecommitdiffstats
path: root/kplato/kptpertview.cc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:11 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:11 -0600
commit94844816550ad672ccfcdc25659c625546239998 (patch)
treee35fc60fd736c645d59f6408af032774ad8023d3 /kplato/kptpertview.cc
parent2a811c38c74c03648ecf857e566c44483cbad706 (diff)
downloadkoffice-94844816550ad672ccfcdc25659c625546239998.tar.gz
koffice-94844816550ad672ccfcdc25659c625546239998.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kplato/kptpertview.cc')
-rw-r--r--kplato/kptpertview.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/kplato/kptpertview.cc b/kplato/kptpertview.cc
index 02830d37f..f573e3104 100644
--- a/kplato/kptpertview.cc
+++ b/kplato/kptpertview.cc
@@ -30,7 +30,7 @@
#include <tqsplitter.h>
#include <tqvbox.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqlistview.h>
#include <tqheader.h>
#include <tqpopupmenu.h>
@@ -40,19 +40,19 @@
namespace KPlato
{
-PertView::PertView( View *view, TQWidget *parent, TQLayout *tqlayout )
+PertView::PertView( View *view, TQWidget *parent, TQLayout *layout )
: TQWidget( parent, "Pert view" ),
m_mainview( view ),
m_node( 0 )
{
- init(tqlayout);
+ init(layout);
}
PertView::~PertView()
{
}
-void PertView::init(TQLayout */*tqlayout*/)
+void PertView::init(TQLayout */*layout*/)
{
//kdDebug()<<k_funcinfo<<endl;
TQGridLayout *gl = new TQGridLayout(this, 1, 1, -1, -1, "Pert TQGridLayout");