summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/multiview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecachegrind/tdecachegrind/multiview.cpp')
-rw-r--r--tdecachegrind/tdecachegrind/multiview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdecachegrind/tdecachegrind/multiview.cpp b/tdecachegrind/tdecachegrind/multiview.cpp
index 628eefab..349db8d6 100644
--- a/tdecachegrind/tdecachegrind/multiview.cpp
+++ b/tdecachegrind/tdecachegrind/multiview.cpp
@@ -38,7 +38,7 @@ MultiView::MultiView(TopLevel* top, TQWidget* parent, const char* name)
: TQSplitter(parent, name), TraceItemView(0, top)
{
// default
- setOrientation(Qt::Horizontal);
+ setOrientation(TQt::Horizontal);
appendView();
_active = _views.first();
@@ -177,7 +177,7 @@ void MultiView::readViewConfig(TDEConfig* c,
int n = g->readNumEntry("Panels", 1);
setChildCount(n);
setOrientation( (g->readEntry("Orientation") == TQString("Horizontal")) ?
- Qt::Horizontal : Qt::Vertical );
+ TQt::Horizontal : TQt::Vertical );
setSizes(g->readIntListEntry("PanelSizes"));
@@ -208,7 +208,7 @@ void MultiView::saveViewConfig(TDEConfig* c,
g.writeEntry("Panels", childCount());
g.writeEntry("Orientation",
- (orientation() == Qt::Horizontal) ?
+ (orientation() == TQt::Horizontal) ?
"Horizontal" : "Vertical");
g.writeEntry("PanelSizes", sizes());