summaryrefslogtreecommitdiffstats
path: root/kbabel/commonui/cmdedit.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:10:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:34:26 +0900
commitb0c86264e0cd10a0d3a47de3b05be453d9417bcd (patch)
tree7ae4535306d69dc4b55f68eae0a65298330ee610 /kbabel/commonui/cmdedit.cpp
parentd859a5c1f439fe432dedde763e40b2dad9875354 (diff)
downloadtdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.tar.gz
tdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbabel/commonui/cmdedit.cpp')
-rw-r--r--kbabel/commonui/cmdedit.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kbabel/commonui/cmdedit.cpp b/kbabel/commonui/cmdedit.cpp
index e6db0b5b..4fcc675e 100644
--- a/kbabel/commonui/cmdedit.cpp
+++ b/kbabel/commonui/cmdedit.cpp
@@ -107,19 +107,19 @@ CmdEdit::CmdEdit(TQWidget* parent, const char* name)
setMinimumSize(layout->sizeHint());
- connect(_addButton , TQT_SIGNAL(clicked()) , this , TQT_SLOT(addCmd()) ) ;
- connect(_editButton , TQT_SIGNAL(clicked()) , this , TQT_SLOT(editCmd()) );
- connect(_removeButton , TQT_SIGNAL(clicked()) , this , TQT_SLOT(removeCmd()) );
- connect(_upButton , TQT_SIGNAL(clicked()) , this , TQT_SLOT(upCmd()) ) ;
- connect(_downButton , TQT_SIGNAL(clicked()) , this , TQT_SLOT(downCmd()) );
-
- connect(_commands , TQT_SIGNAL(highlighted(int)) , this, TQT_SLOT(cmdHighlighted(int)) );
- connect(_commandNames , TQT_SIGNAL(highlighted(int)) , this, TQT_SLOT(cmdNameHighlighted(int)) );
- connect(_commands , TQT_SIGNAL(selected(int)) , this, TQT_SLOT(editCmd()) );
- connect(_commandNames , TQT_SIGNAL(selected(int)) , this, TQT_SLOT(editCmd()) );
-
- connect(_cmdEdit, TQT_SIGNAL(textChanged(const TQString&)) , this , TQT_SLOT(checkAdd()) );
- connect(_cmdNameEdit, TQT_SIGNAL(textChanged(const TQString&)) , this , TQT_SLOT(checkAdd()) );
+ connect(_addButton , TQ_SIGNAL(clicked()) , this , TQ_SLOT(addCmd()) ) ;
+ connect(_editButton , TQ_SIGNAL(clicked()) , this , TQ_SLOT(editCmd()) );
+ connect(_removeButton , TQ_SIGNAL(clicked()) , this , TQ_SLOT(removeCmd()) );
+ connect(_upButton , TQ_SIGNAL(clicked()) , this , TQ_SLOT(upCmd()) ) ;
+ connect(_downButton , TQ_SIGNAL(clicked()) , this , TQ_SLOT(downCmd()) );
+
+ connect(_commands , TQ_SIGNAL(highlighted(int)) , this, TQ_SLOT(cmdHighlighted(int)) );
+ connect(_commandNames , TQ_SIGNAL(highlighted(int)) , this, TQ_SLOT(cmdNameHighlighted(int)) );
+ connect(_commands , TQ_SIGNAL(selected(int)) , this, TQ_SLOT(editCmd()) );
+ connect(_commandNames , TQ_SIGNAL(selected(int)) , this, TQ_SLOT(editCmd()) );
+
+ connect(_cmdEdit, TQ_SIGNAL(textChanged(const TQString&)) , this , TQ_SLOT(checkAdd()) );
+ connect(_cmdNameEdit, TQ_SIGNAL(textChanged(const TQString&)) , this , TQ_SLOT(checkAdd()) );
}
void CmdEdit::setCommands(const TQStringList& commands,const TQStringList& commandNames)