summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-05 15:25:41 +0900
committerMichele Calgaro <[email protected]>2023-11-05 22:38:44 +0900
commite41c0cedda62ed83cabc9fb5fa026b9fb638eb9f (patch)
tree3146bd7790a8a275a1c68a4ad92d2ef0879d94bf
parent52eaa0b5bf6708a9594235d7f9e384107f98c9fb (diff)
downloadabakus-e41c0cedda62ed83cabc9fb5fa026b9fb638eb9f.tar.gz
abakus-e41c0cedda62ed83cabc9fb5fa026b9fb638eb9f.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 19484d07c4ed721bc06e20aacfb19307a75dcdaf)
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index bff9239..a7a5f2e 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -120,7 +120,7 @@ MainWindow::MainWindow() : TDEMainWindow(0, "abakus-mainwindow"), m_popup(0), m_
connect(m_edit, TQT_SIGNAL(returnPressed()), TQT_SLOT(slotReturnPressed()));
connect(m_edit, TQT_SIGNAL(textChanged()), TQT_SLOT(slotTextChanged()));
- m_listSplitter = new TQSplitter(Qt::Vertical, m_mainSplitter);
+ m_listSplitter = new TQSplitter(TQt::Vertical, m_mainSplitter);
m_fnList = new FunctionListView(m_listSplitter);
m_fnList->addColumn("Functions");
m_fnList->addColumn("Value");