summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:55:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:55:18 +0900
commitf57d24985e5b3c8b8c070388aedf6fa915b1c316 (patch)
treeaa86157b321acf5f8fb5385aac72142500d16bdf /src/mainwindow.cpp
parent30d2f3d2750a4ddee216eb64380781e593de6b25 (diff)
downloadtellico-f57d24985e5b3c8b8c070388aedf6fa915b1c316.tar.gz
tellico-f57d24985e5b3c8b8c070388aedf6fa915b1c316.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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);