summaryrefslogtreecommitdiffstats
path: root/part/actions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:44:53 +0900
commit4d0e92e869aeab286a753010ee87be3bd30cafe4 (patch)
tree7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/actions.cpp
parent80d4c1120d98af73d048b059d4464fcecc71c07b (diff)
downloadkxmleditor-4d0e92e869aeab286a753010ee87be3bd30cafe4.tar.gz
kxmleditor-4d0e92e869aeab286a753010ee87be3bd30cafe4.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'part/actions.cpp')
-rw-r--r--part/actions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/part/actions.cpp b/part/actions.cpp
index 79aea8d..febaaf2 100644
--- a/part/actions.cpp
+++ b/part/actions.cpp
@@ -73,11 +73,11 @@ int KXmlEditorComboAction::plug(TQWidget *w, int index)
m_pCombo->setEditable(true);
m_pCombo->setInsertionPolicy(TQComboBox::NoInsertion);
toolBar->insertWidget( id, 70, m_pCombo, index );
- connect( m_pCombo, SIGNAL(activated(const TQString&)), m_receiver, m_member );
+ connect( m_pCombo, TQ_SIGNAL(activated(const TQString&)), m_receiver, m_member );
addContainer( toolBar, id );
- connect(toolBar, SIGNAL(destroyed()), this, SLOT(slotDestroyed()));
+ connect(toolBar, TQ_SIGNAL(destroyed()), this, TQ_SLOT(slotDestroyed()));
toolBar->setItemAutoSized(id, true);