summaryrefslogtreecommitdiffstats
path: root/part/kxenewfilesettings.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-31 22:21:37 +0900
commit9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch)
tree7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxenewfilesettings.cpp
parent21ab29e9b899ae5d211ac58ca7fea4e34f46e4b7 (diff)
downloadkxmleditor-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/kxenewfilesettings.cpp')
-rw-r--r--part/kxenewfilesettings.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/part/kxenewfilesettings.cpp b/part/kxenewfilesettings.cpp
index c23d4b4..a108a98 100644
--- a/part/kxenewfilesettings.cpp
+++ b/part/kxenewfilesettings.cpp
@@ -92,11 +92,11 @@ TQWidget * KXENewFileSettings::dialogPage( TQFrame * pParent )
m_pDialogPage->m_pDfltEncoding->insertStringList( encodings() );
updatePage();
- connect( m_pDialogPage->m_pDfltVersion, SIGNAL(textChanged(const TQString&)), this, SIGNAL(sigDialogPageChanged()) );
- connect( m_pDialogPage->m_pDfltEncoding, SIGNAL(activated(int)), this, SIGNAL(sigDialogPageChanged()) );
- connect( m_pDialogPage->m_pNewFileCreatBehav1, SIGNAL(toggled(bool)), this, SIGNAL(sigDialogPageChanged()) );
- connect( m_pDialogPage->m_pNewFileCreatBehav2, SIGNAL(toggled(bool)), this, SIGNAL(sigDialogPageChanged()) );
- connect( m_pDialogPage->m_pNewFileCreatBehav3, SIGNAL(toggled(bool)), this, SIGNAL(sigDialogPageChanged()) );
+ connect( m_pDialogPage->m_pDfltVersion, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SIGNAL(sigDialogPageChanged()) );
+ connect( m_pDialogPage->m_pDfltEncoding, TQ_SIGNAL(activated(int)), this, TQ_SIGNAL(sigDialogPageChanged()) );
+ connect( m_pDialogPage->m_pNewFileCreatBehav1, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(sigDialogPageChanged()) );
+ connect( m_pDialogPage->m_pNewFileCreatBehav2, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(sigDialogPageChanged()) );
+ connect( m_pDialogPage->m_pNewFileCreatBehav3, TQ_SIGNAL(toggled(bool)), this, TQ_SIGNAL(sigDialogPageChanged()) );
}
return m_pDialogPage;