summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 55312b5..9c20a0d 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -796,7 +796,7 @@ void MainWindow::initDocument() {
void MainWindow::initView() {
MARK;
- m_split = new TQSplitter(Qt::Horizontal, this);
+ m_split = new TQSplitter(TQt::Horizontal, this);
setCentralWidget(m_split);
m_viewTabs = new GUI::TabControl(m_split);
@@ -807,7 +807,7 @@ void MainWindow::initView() {
TQWhatsThis::add(m_groupView, i18n("<qt>The <i>Group View</i> sorts the entries into groupings "
"based on a selected field.</qt>"));
- m_rightSplit = new TQSplitter(Qt::Vertical, m_split);
+ m_rightSplit = new TQSplitter(TQt::Vertical, m_split);
m_detailedView = new DetailedListView(m_rightSplit, "detailedlistview");
Controller::self()->addObserver(m_detailedView);