diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 11:55:18 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 20:59:31 +0900 |
commit | 034ed63e8dcd4071ff2857fb066f90b60313216f (patch) | |
tree | d8f02d03c1f9c77442c59c55ea75f5cb6539dec4 /src/mainwindow.cpp | |
parent | 59252e910c0a40943329918aeead9293d5ee82e0 (diff) | |
download | tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.tar.gz tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit f57d24985e5b3c8b8c070388aedf6fa915b1c316)
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
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); |