summaryrefslogtreecommitdiffstats
path: root/kformula/kfconfig.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kformula/kfconfig.cc')
-rw-r--r--kformula/kfconfig.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/kformula/kfconfig.cc b/kformula/kfconfig.cc
index 0a24dc8f..2e99e67a 100644
--- a/kformula/kfconfig.cc
+++ b/kformula/kfconfig.cc
@@ -29,24 +29,24 @@
#include "kformula_view.h"
-KFConfig::KFConfig( KFormulaPartView* parent )
+KFConfig::KFConfig( KFormulaPartView* tqparent )
: KDialogBase( KDialogBase::IconList, i18n( "Configure KFormula" ),
KDialogBase::Ok | KDialogBase::Apply | KDialogBase::Cancel | KDialogBase::Default,
- KDialogBase::Ok, parent )
+ KDialogBase::Ok, tqparent )
{
//kdDebug( 40000 ) << "KFConfig::KFConfig" << endl;
- QVBox* page1 = addVBoxPage( i18n( "Formula" ), i18n( "Formula Settings" ),
+ TQVBox* page1 = addVBoxPage( i18n( "Formula" ), i18n( "Formula Settings" ),
BarIcon( "kformula", KIcon::SizeMedium ) );
- _page = new KFormula::ConfigurePage( parent->document()->getDocument(), this,
+ _page = new KFormula::ConfigurePage( tqparent->document()->getDocument(), this,
KFormulaFactory::global()->config(),
page1 );
-// QVBox* page2 = addVBoxPage( i18n( "Math Fonts" ), i18n( "Math Fonts Settings" ),
+// TQVBox* page2 = addVBoxPage( i18n( "Math Fonts" ), i18n( "Math Fonts Settings" ),
// BarIcon( "kformula", KIcon::SizeMedium ) );
-// _mathFontPage = new KFormula::MathFontsConfigurePage( parent->document()->getDocument(), this,
+// _mathFontPage = new KFormula::MathFontsConfigurePage( tqparent->document()->getDocument(), this,
// KFormulaFactory::global()->config(),
// page2 );
- connect( this, SIGNAL( okClicked() ), this, SLOT( slotApply() ) );
+ connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( slotApply() ) );
}
void KFConfig::slotApply()