summaryrefslogtreecommitdiffstats
path: root/lib/kformula/stringelement.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kformula/stringelement.h')
-rw-r--r--lib/kformula/stringelement.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/kformula/stringelement.h b/lib/kformula/stringelement.h
index e3542204..447895db 100644
--- a/lib/kformula/stringelement.h
+++ b/lib/kformula/stringelement.h
@@ -27,19 +27,19 @@ KFORMULA_NAMESPACE_BEGIN
class StringElement : public TokenElement {
typedef TokenElement inherited;
public:
- StringElement( BasicElement* parent = 0 );
- virtual int buildChildrenFromMathMLDom(QPtrList<BasicElement>& list, QDomNode n);
+ StringElement( BasicElement* tqparent = 0 );
+ virtual int buildChildrenFromMathMLDom(TQPtrList<BasicElement>& list, TQDomNode n);
protected:
- virtual bool readAttributesFromMathMLDom(const QDomElement& element);
+ virtual bool readAttributesFromMathMLDom(const TQDomElement& element);
private:
- virtual QString getElementName() const { return "ms"; }
- virtual void writeMathMLAttributes( QDomElement& element ) const ;
- virtual void writeMathMLContent( QDomDocument& doc, QDomElement& element, bool oasisFormat ) const ;
+ virtual TQString getElementName() const { return "ms"; }
+ virtual void writeMathMLAttributes( TQDomElement& element ) const ;
+ virtual void writeMathMLContent( TQDomDocument& doc, TQDomElement& element, bool oasisFormat ) const ;
- QString m_lquote;
- QString m_rquote;
+ TQString m_lquote;
+ TQString m_rquote;
bool m_customLquote;
bool m_customRquote;
};