diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:21:37 +0900 |
commit | 9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch) | |
tree | 7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxeattributedialog.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 <michele.calgaro@yahoo.it>
(cherry picked from commit 4d0e92e869aeab286a753010ee87be3bd30cafe4)
Diffstat (limited to 'part/kxeattributedialog.cpp')
-rw-r--r-- | part/kxeattributedialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/part/kxeattributedialog.cpp b/part/kxeattributedialog.cpp index a9fba96..09f2e7e 100644 --- a/part/kxeattributedialog.cpp +++ b/part/kxeattributedialog.cpp @@ -27,9 +27,9 @@ KXEAttributeDialog::KXEAttributeDialog( TQWidget * pParent, const char * pszName, bool fModal, WFlags fl ) : KXEAttributeDialogBase( pParent, pszName, fModal, fl ) { - connect( m_pEditNamespace, SIGNAL(textChanged(const TQString &)), this, SLOT(slotNamespaceChanged(const TQString &)) ); - connect( m_pEditQName, SIGNAL(textChanged(const TQString &)), this, SLOT(slotNameChanged(const TQString &)) ); - connect( m_pEditValue, SIGNAL(textChanged(const TQString &)), this, SLOT(slotValueChanged(const TQString &)) ); + connect( m_pEditNamespace, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(slotNamespaceChanged(const TQString &)) ); + connect( m_pEditQName, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(slotNameChanged(const TQString &)) ); + connect( m_pEditValue, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(slotValueChanged(const TQString &)) ); } void KXEAttributeDialog::clearDialog() |