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/kxeconfiguration.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/kxeconfiguration.cpp')
-rw-r--r-- | part/kxeconfiguration.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/part/kxeconfiguration.cpp b/part/kxeconfiguration.cpp index 6e8c425..4d25856 100644 --- a/part/kxeconfiguration.cpp +++ b/part/kxeconfiguration.cpp @@ -90,8 +90,8 @@ void KXEConfiguration::showDialog() "configuration dialog", // name false, // not modal true ); // show separator - connect( m_pDialog, SIGNAL(applyClicked()), this, SLOT(slotDlgApplied()) ); - connect( m_pDialog, SIGNAL(okClicked()), this, SLOT(slotDlgApplied()) ); + connect( m_pDialog, TQ_SIGNAL(applyClicked()), this, TQ_SLOT(slotDlgApplied()) ); + connect( m_pDialog, TQ_SIGNAL(okClicked()), this, TQ_SLOT(slotDlgApplied()) ); // and add the pages TQFrame * pFrame; @@ -105,7 +105,7 @@ void KXEConfiguration::showDialog() pLayout = new TQVBoxLayout( pFrame ); pPage = m_pTreeView->dialogPage( pFrame ); pLayout->addWidget( pPage ); - connect( m_pTreeView, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); + connect( m_pTreeView, TQ_SIGNAL(sigDialogPageChanged()), this, TQ_SLOT(slotDlgChanged()) ); // - text view properties page pFrame = m_pDialog->addPage( m_pTextView->dialogPageName(), @@ -114,7 +114,7 @@ void KXEConfiguration::showDialog() pLayout = new TQVBoxLayout( pFrame ); pPage = m_pTextView->dialogPage( pFrame ); pLayout->addWidget( pPage ); - connect( m_pTextView, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); + connect( m_pTextView, TQ_SIGNAL(sigDialogPageChanged()), this, TQ_SLOT(slotDlgChanged()) ); // - new file settings page pFrame = m_pDialog->addPage( m_pNewFile->dialogPageName(), @@ -123,7 +123,7 @@ void KXEConfiguration::showDialog() pLayout = new TQVBoxLayout( pFrame ); pPage = m_pNewFile->dialogPage( pFrame ); pLayout->addWidget( pPage ); - connect( m_pNewFile, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); + connect( m_pNewFile, TQ_SIGNAL(sigDialogPageChanged()), this, TQ_SLOT(slotDlgChanged()) ); // - printing's settings page pFrame = m_pDialog->addPage( m_pPrint->dialogPageName(), @@ -132,7 +132,7 @@ void KXEConfiguration::showDialog() pLayout = new TQVBoxLayout( pFrame ); pPage = m_pPrint->dialogPage( pFrame ); pLayout->addWidget( pPage ); - connect( m_pPrint, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); + connect( m_pPrint, TQ_SIGNAL(sigDialogPageChanged()), this, TQ_SLOT(slotDlgChanged()) ); // - archive extensions page pFrame = m_pDialog->addPage( m_pArcExts->dialogPageName(), @@ -141,7 +141,7 @@ void KXEConfiguration::showDialog() pLayout = new TQVBoxLayout( pFrame ); pPage = m_pArcExts->dialogPage( pFrame ); pLayout->addWidget( pPage ); - connect( m_pArcExts, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); + connect( m_pArcExts, TQ_SIGNAL(sigDialogPageChanged()), this, TQ_SLOT(slotDlgChanged()) ); } if ( m_pDialog->isVisible() ) // If the dialog is visible (probably opened by |