diff options
Diffstat (limited to 'kword/KWFormulaFrameSet.cpp')
| -rw-r--r-- | kword/KWFormulaFrameSet.cpp | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/kword/KWFormulaFrameSet.cpp b/kword/KWFormulaFrameSet.cpp index 98f27cfa6..d3aabc0c4 100644 --- a/kword/KWFormulaFrameSet.cpp +++ b/kword/KWFormulaFrameSet.cpp @@ -92,10 +92,10 @@ void KWFormulaFrameSet::init()      // there is no need to move the KFormulaContainer anymore, it remains at (0,0).      formula->moveTo( 0, 0 ); -    connect( formula, TQT_SIGNAL( formulaChanged( double, double ) ), -             this, TQT_SLOT( slotFormulaChanged( double, double ) ) ); -    connect( formula, TQT_SIGNAL( errorMsg( const TQString& ) ), -             this, TQT_SLOT( slotErrorMessage( const TQString& ) ) ); +    connect( formula, TQ_SIGNAL( formulaChanged( double, double ) ), +             this, TQ_SLOT( slotFormulaChanged( double, double ) ) ); +    connect( formula, TQ_SIGNAL( errorMsg( const TQString& ) ), +             this, TQ_SLOT( slotErrorMessage( const TQString& ) ) );      /*      if ( isFloating() ) { @@ -293,10 +293,10 @@ void KWFormulaFrameSet::paste( TQDomNode& formulaElem )      if (!formulaElem.isNull()) {          if (formula == 0) {              formula = m_doc->formulaDocument()->createFormula( -1, false ); -            connect(formula, TQT_SIGNAL(formulaChanged(double, double)), -                    this, TQT_SLOT(slotFormulaChanged(double, double))); -            connect( formula, TQT_SIGNAL( errorMsg( const TQString& ) ), -                     this, TQT_SLOT( slotErrorMessage( const TQString& ) ) ); +            connect(formula, TQ_SIGNAL(formulaChanged(double, double)), +                    this, TQ_SLOT(slotFormulaChanged(double, double))); +            connect( formula, TQ_SIGNAL( errorMsg( const TQString& ) ), +                     this, TQ_SLOT( slotErrorMessage( const TQString& ) ) );          }          m_doc->formulaDocument()->setCreationStrategy( "Oasis" );          if ( !formula->loadMathML( formulaElem.firstChild().toElement() ) ) { @@ -362,10 +362,10 @@ KWFormulaFrameSetEdit::KWFormulaFrameSetEdit(KWFormulaFrameSet* fs, KWCanvas* ca  {      formulaView = new KFormula::View( fs->getFormula() ); -    connect( formulaView, TQT_SIGNAL( cursorChanged( bool, bool ) ), -             this, TQT_SLOT( cursorChanged( bool, bool ) ) ); -    connect( fs->getFormula(), TQT_SIGNAL( leaveFormula( Container*, FormulaCursor*, int ) ), -             this, TQT_SLOT( slotLeaveFormula( Container*, FormulaCursor*, int ) ) ); +    connect( formulaView, TQ_SIGNAL( cursorChanged( bool, bool ) ), +             this, TQ_SLOT( cursorChanged( bool, bool ) ) ); +    connect( fs->getFormula(), TQ_SIGNAL( leaveFormula( Container*, FormulaCursor*, int ) ), +             this, TQ_SLOT( slotLeaveFormula( Container*, FormulaCursor*, int ) ) );      fs->m_edit = this; | 
