diff options
Diffstat (limited to 'quanta/parsers/saparser.h')
-rw-r--r-- | quanta/parsers/saparser.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/quanta/parsers/saparser.h b/quanta/parsers/saparser.h index 74b00b3e..d344fb55 100644 --- a/quanta/parsers/saparser.h +++ b/quanta/parsers/saparser.h @@ -38,9 +38,10 @@ class SAGroupParser; /** This class is used to parse a special area (script) in the document. */ -class SAParser: public QObject +class SAParser: public TQObject { Q_OBJECT + TQ_OBJECT public: SAParser(); @@ -56,7 +57,7 @@ public: area. It may end before the end position. areaStartString: the special area starting string forcedAreaEndString: force this as the special area ending string. - parentNode: the Node under where the special area goes + tqparentNode: the Node under where the special area goes fullParse: the script node will be fully parsed for groups, structures or so. If false, only the script beginning and end will be determined. synchronous: if true, the function does not return until the parsing is finished, otherwise return immediately. @@ -65,7 +66,7 @@ public: Node* parseArea(const AreaStruct &specialArea, const TQString &areaStartString, const TQString &forcedAreaEndString, - Node *parentNode, + Node *tqparentNode, bool fullParse, bool synchronous); /** Returns the line where the last parsing run ended. */ int lastParsedLine() {return m_lastParsedLine;} @@ -96,7 +97,7 @@ private: int type; AreaStruct area; TQString startString; - Node *parentNode; + Node *tqparentNode; Node *lastNode; }; enum ContextType { |