summaryrefslogtreecommitdiffstats
path: root/knights/dlg_selectengine.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:38:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:58:54 +0900
commitff0d52cab681a2154a1462935a5d9e4d6ebfe34e (patch)
treee7b68b2081d7f379ec279b5e99f42769c6d2eca8 /knights/dlg_selectengine.cpp
parent67931fdc7eef3648d88a34b9b01376ca8f6a70d7 (diff)
downloadknights-ff0d52cab681a2154a1462935a5d9e4d6ebfe34e.tar.gz
knights-ff0d52cab681a2154a1462935a5d9e4d6ebfe34e.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'knights/dlg_selectengine.cpp')
-rw-r--r--knights/dlg_selectengine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knights/dlg_selectengine.cpp b/knights/dlg_selectengine.cpp
index 8a12533..2d8a846 100644
--- a/knights/dlg_selectengine.cpp
+++ b/knights/dlg_selectengine.cpp
@@ -52,8 +52,8 @@ dlg_selectengine::dlg_selectengine(TQWidget *parent, resource *Rsrc, bool army )
buildEngineData();
- connect( COMBO_Engine, TQT_SIGNAL( activated(int) ), this, TQT_SLOT( slotCurrent(int) ) );
-// connect( COMBO_EngineHelper, TQT_SIGNAL( activated(int) ), this, TQT_SLOT( slotCurrentHelper(int) ) );
+ connect( COMBO_Engine, TQ_SIGNAL( activated(int) ), this, TQ_SLOT( slotCurrent(int) ) );
+// connect( COMBO_EngineHelper, TQ_SIGNAL( activated(int) ), this, TQ_SLOT( slotCurrentHelper(int) ) );
GROUP_Strength = new TQGroupBox( 3,
@@ -69,7 +69,7 @@ dlg_selectengine::dlg_selectengine(TQWidget *parent, resource *Rsrc, bool army )
GROUP_Strength );
LABEL_Str_Max = new TQLabel( i18n( "Strong" ), GROUP_Strength );
SLIDER_Strength->setTickmarks( TQSlider::Below );
- connect( SLIDER_Strength, TQT_SIGNAL( valueChanged(int) ), this, TQT_SLOT( slotStrength(int) ) );
+ connect( SLIDER_Strength, TQ_SIGNAL( valueChanged(int) ), this, TQ_SLOT( slotStrength(int) ) );
}
dlg_selectengine::~dlg_selectengine()
{