From 38dca4b75c471ddf950e2f9f03801c550d7d26fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 26 Mar 2016 12:35:35 +0100 Subject: Initial TQt conversion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- part/kxeconfiguration.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'part/kxeconfiguration.cpp') diff --git a/part/kxeconfiguration.cpp b/part/kxeconfiguration.cpp index 1b933b3..a06e90e 100644 --- a/part/kxeconfiguration.cpp +++ b/part/kxeconfiguration.cpp @@ -27,11 +27,11 @@ #include #include -#include +#include KXEConfiguration::KXEConfiguration() - : QObject( 0, "KXMLEditor's configuration (KXEConfiguration)" ), + : TQObject( 0, "KXMLEditor's configuration (KXEConfiguration)" ), m_pDialog( 0 ) { // initialize all setting group objects @@ -94,15 +94,15 @@ void KXEConfiguration::showDialog() connect( m_pDialog, SIGNAL(okClicked()), this, SLOT(slotDlgApplied()) ); // and add the pages - QFrame * pFrame; - QWidget * pPage; - QVBoxLayout * pLayout; + TQFrame * pFrame; + TQWidget * pPage; + TQVBoxLayout * pLayout; // - tree view properties page pFrame = m_pDialog->addPage( m_pTreeView->dialogPageName(), m_pTreeView->dialogPageHeader(), KGlobal::instance()->iconLoader()->loadIcon( m_pTreeView->dialogPageIcon(), KIcon::NoGroup, KIcon::SizeMedium ) ); - pLayout = new QVBoxLayout( pFrame ); + pLayout = new TQVBoxLayout( pFrame ); pPage = m_pTreeView->dialogPage( pFrame ); pLayout->addWidget( pPage ); connect( m_pTreeView, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); @@ -111,7 +111,7 @@ void KXEConfiguration::showDialog() pFrame = m_pDialog->addPage( m_pTextView->dialogPageName(), m_pTextView->dialogPageHeader(), KGlobal::instance()->iconLoader()->loadIcon( m_pTextView->dialogPageIcon(), KIcon::NoGroup, KIcon::SizeMedium ) ); - pLayout = new QVBoxLayout( pFrame ); + pLayout = new TQVBoxLayout( pFrame ); pPage = m_pTextView->dialogPage( pFrame ); pLayout->addWidget( pPage ); connect( m_pTextView, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); @@ -120,7 +120,7 @@ void KXEConfiguration::showDialog() pFrame = m_pDialog->addPage( m_pNewFile->dialogPageName(), m_pNewFile->dialogPageHeader(), KGlobal::instance()->iconLoader()->loadIcon( m_pNewFile->dialogPageIcon(), KIcon::NoGroup, KIcon::SizeMedium ) ); - pLayout = new QVBoxLayout( pFrame ); + pLayout = new TQVBoxLayout( pFrame ); pPage = m_pNewFile->dialogPage( pFrame ); pLayout->addWidget( pPage ); connect( m_pNewFile, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); @@ -129,7 +129,7 @@ void KXEConfiguration::showDialog() pFrame = m_pDialog->addPage( m_pPrint->dialogPageName(), m_pPrint->dialogPageHeader(), KGlobal::instance()->iconLoader()->loadIcon( m_pPrint->dialogPageIcon(), KIcon::NoGroup, KIcon::SizeMedium ) ); - pLayout = new QVBoxLayout( pFrame ); + pLayout = new TQVBoxLayout( pFrame ); pPage = m_pPrint->dialogPage( pFrame ); pLayout->addWidget( pPage ); connect( m_pPrint, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); @@ -138,7 +138,7 @@ void KXEConfiguration::showDialog() pFrame = m_pDialog->addPage( m_pArcExts->dialogPageName(), m_pArcExts->dialogPageHeader(), KGlobal::instance()->iconLoader()->loadIcon( m_pArcExts->dialogPageIcon(), KIcon::NoGroup, KIcon::SizeMedium ) ); - pLayout = new QVBoxLayout( pFrame ); + pLayout = new TQVBoxLayout( pFrame ); pPage = m_pArcExts->dialogPage( pFrame ); pLayout->addWidget( pPage ); connect( m_pArcExts, SIGNAL(sigDialogPageChanged()), this, SLOT(slotDlgChanged()) ); -- cgit v1.2.1