summaryrefslogtreecommitdiffstats
path: root/kbruch/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-21 15:00:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-21 15:00:12 +0900
commitf1813227cade0bda608db8f74344ca5b4260d4af (patch)
tree4350aff5493ee46887f2a3c05c36d93ceeab3017 /kbruch/src
parent3a3c833f4e952ec1c1e6be13d66237efb58336d3 (diff)
downloadtdeedu-master.tar.gz
tdeedu-master.zip
Remove use of TDE_VERSIONHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbruch/src')
-rw-r--r--kbruch/src/mainqtwidget.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/kbruch/src/mainqtwidget.cpp b/kbruch/src/mainqtwidget.cpp
index 3c44c4bf..ace772f5 100644
--- a/kbruch/src/mainqtwidget.cpp
+++ b/kbruch/src/mainqtwidget.cpp
@@ -107,10 +107,6 @@ MainQtWidget::MainQtWidget()
TQObject::connect(m_exerciseFactorize, TQ_SIGNAL(signalExerciseSolvedCorrect()), m_statview, TQ_SLOT(addCorrect()));
TQObject::connect(m_exerciseFactorize, TQ_SIGNAL(signalExerciseSolvedWrong()), m_statview, TQ_SLOT(addWrong()));
-#if (TDE_VERSION_MINOR>=3) && (TDE_VERSION_MAJOR>=3)
-#else
- resize(TQSize(TQMAX(toolBar()->sizeHint().width(), sizeHint().width()), sizeHint().height()));
-#endif
// now show the last exercise
m_exercises->showPage(SettingsClass::activeExercise());
slotAboutToShowPage(m_exercises->pageWidget(m_exercises->activePageIndex()));
@@ -241,12 +237,10 @@ void MainQtWidget::setupActions()
// now connect the ComboBox's signal textChanged() to the slot function
TQObject::connect(m_OperationBox, TQ_SIGNAL(activated(int)), this, TQ_SLOT(OperationBoxSlot()));
-#if (TDE_VERSION_MINOR>=3) && (TDE_VERSION_MAJOR>=3)
if (!initialGeometrySet())
resize( TQSize(725, 330).expandedTo(minimumSizeHint()));
setupGUI(ToolBar | Keys | StatusBar | Create);
setAutoSaveSettings();
-#endif
}