summaryrefslogtreecommitdiffstats
path: root/kplato/kptview.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-21 14:05:41 -0600
committerTimothy Pearson <[email protected]>2011-12-21 14:05:41 -0600
commit2d6954f69caf63ed5057bd8e1405a65d7d970292 (patch)
tree88e6436b2e81d4e68313f02a9021054252e14cc4 /kplato/kptview.cc
parentf0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (diff)
downloadkoffice-2d6954f69caf63ed5057bd8e1405a65d7d970292.tar.gz
koffice-2d6954f69caf63ed5057bd8e1405a65d7d970292.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'kplato/kptview.cc')
-rw-r--r--kplato/kptview.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/kplato/kptview.cc b/kplato/kptview.cc
index e986ea99..d4a84e68 100644
--- a/kplato/kptview.cc
+++ b/kplato/kptview.cc
@@ -102,9 +102,9 @@ namespace KPlato
View::View(Part* part, TQWidget* parent, const char* /*name*/)
: KoView(part, parent, "Main View"),
m_ganttview(0),
- m_gantttqlayout(0),
+ m_ganttlayout(0),
m_pertview(0),
- m_perttqlayout(0),
+ m_pertlayout(0),
// m_reportview(0),
m_baselineMode(false),
m_currentEstimateType(Effort::Use_Expected)
@@ -122,15 +122,15 @@ View::View(Part* part, TQWidget* parent, const char* /*name*/)
dcopObject();
m_tab = new TQWidgetStack(this);
- TQVBoxLayout *tqlayout = new TQVBoxLayout(this);
- tqlayout->add(m_tab);
+ TQVBoxLayout *layout = new TQVBoxLayout(this);
+ layout->add(m_tab);
m_ganttview = new GanttView(m_tab, part->isReadWrite());
m_tab->addWidget(m_ganttview);
m_updateGanttview = false;
m_ganttview->draw(getPart()->getProject());
- m_pertview = new PertView( this, m_tab, tqlayout );
+ m_pertview = new PertView( this, m_tab, layout );
m_tab->addWidget(m_pertview);
m_resourceview = new ResourceView( this, m_tab );