From f57d24985e5b3c8b8c070388aedf6fa915b1c316 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 11:55:18 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro --- src/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainwindow.cpp') 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("The Group View sorts the entries into groupings " "based on a selected field.")); - 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); -- cgit v1.2.1