summaryrefslogtreecommitdiffstats
path: root/part/kxeprocinstrdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-28 16:37:54 +0900
committerMichele Calgaro <[email protected]>2023-12-31 22:21:37 +0900
commit9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch)
tree7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxeprocinstrdialog.cpp
parent21ab29e9b899ae5d211ac58ca7fea4e34f46e4b7 (diff)
downloadkxmleditor-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/kxeprocinstrdialog.cpp')
-rw-r--r--part/kxeprocinstrdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/part/kxeprocinstrdialog.cpp b/part/kxeprocinstrdialog.cpp
index ef5287b..49e942b 100644
--- a/part/kxeprocinstrdialog.cpp
+++ b/part/kxeprocinstrdialog.cpp
@@ -31,9 +31,9 @@ KXEProcInstrDialog::KXEProcInstrDialog( TQWidget * pParent, const char * pszName
: KXEProcInstrDialogBase( pParent, pszName, fModal, fl )
{
// signals and slots connections
- connect( m_pBtnOK, SIGNAL( clicked() ), this, SLOT( slotAccept() ) );
- connect( m_pEditData, SIGNAL(textChanged()), this, SLOT(slotDataChanged()) );
- connect( m_pEditTarget, SIGNAL(textChanged(const TQString &)), this, SLOT(slotTargetChanged(const TQString &)) );
+ connect( m_pBtnOK, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotAccept() ) );
+ connect( m_pEditData, TQ_SIGNAL(textChanged()), this, TQ_SLOT(slotDataChanged()) );
+ connect( m_pEditTarget, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(slotTargetChanged(const TQString &)) );
}