diff options
Diffstat (limited to 'lib/kformula/operatorelement.h')
-rw-r--r-- | lib/kformula/operatorelement.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/kformula/operatorelement.h b/lib/kformula/operatorelement.h index 476b6e99a..52c35537a 100644 --- a/lib/kformula/operatorelement.h +++ b/lib/kformula/operatorelement.h @@ -27,7 +27,7 @@ KFORMULA_NAMESPACE_BEGIN class OperatorElement : public TokenElement { typedef TokenElement inherited; public: - OperatorElement( BasicElement* parent = 0 ); + OperatorElement( BasicElement* tqparent = 0 ); void setForm( FormType type ); /** @@ -40,11 +40,11 @@ public: */ virtual KCommand* buildCommand( Container*, Request* ); - virtual QString getElementName() const { return "mo"; } + virtual TQString getElementName() const { return "mo"; } private: - virtual bool readAttributesFromMathMLDom( const QDomElement &element ); - void writeMathMLAttributes( QDomElement& element ) const ; - void writeSizeAttribute( QDomElement& element, const QString &attr, SizeType type, double length ) const ; + virtual bool readAttributesFromMathMLDom( const TQDomElement &element ); + void writeMathMLAttributes( TQDomElement& element ) const ; + void writeSizeAttribute( TQDomElement& element, const TQString &attr, SizeType type, double length ) const ; FormType m_form; SizeType m_lspaceType; |