diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-31 22:21:37 +0900 |
commit | 9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch) | |
tree | 7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/actions.cpp | |
parent | 21ab29e9b899ae5d211ac58ca7fea4e34f46e4b7 (diff) | |
download | kxmleditor-9e94ee99cd260efb279f2c810ea2c2cc7839e6ae.tar.gz kxmleditor-9e94ee99cd260efb279f2c810ea2c2cc7839e6ae.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 4d0e92e869aeab286a753010ee87be3bd30cafe4)
Diffstat (limited to 'part/actions.cpp')
-rw-r--r-- | part/actions.cpp | 4 |
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); |