diff options
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 |