diff options
Diffstat (limited to 'lib/kformula/encloseelement.cc')
-rw-r--r-- | lib/kformula/encloseelement.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kformula/encloseelement.cc b/lib/kformula/encloseelement.cc index 384f6b92..05617361 100644 --- a/lib/kformula/encloseelement.cc +++ b/lib/kformula/encloseelement.cc @@ -21,10 +21,10 @@ KFORMULA_NAMESPACE_BEGIN -EncloseElement::EncloseElement( BasicElement* parent ) : SequenceElement( parent ) { +EncloseElement::EncloseElement( BasicElement* tqparent ) : SequenceElement( tqparent ) { } -bool EncloseElement::readAttributesFromMathMLDom(const QDomElement& element) +bool EncloseElement::readAttributesFromMathMLDom(const TQDomElement& element) { if ( ! BasicElement::readAttributesFromMathMLDom( element ) ) { return false; @@ -34,7 +34,7 @@ bool EncloseElement::readAttributesFromMathMLDom(const QDomElement& element) return true; } -void EncloseElement::writeMathMLAttributes( QDomElement& element ) const +void EncloseElement::writeMathMLAttributes( TQDomElement& element ) const { if ( ! m_notation.isNull() ) { element.setAttribute( "notation", m_notation ); |