diff options
Diffstat (limited to 'quanta/parsers/parsercommon.h')
-rw-r--r-- | quanta/parsers/parsercommon.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/quanta/parsers/parsercommon.h b/quanta/parsers/parsercommon.h index 7a7677ec..9b0c01f4 100644 --- a/quanta/parsers/parsercommon.h +++ b/quanta/parsers/parsercommon.h @@ -18,8 +18,8 @@ #define PARSERCOMMON_H //qt includes -#include <qptrlist.h> -#include <qstringlist.h> +#include <tqptrlist.h> +#include <tqstringlist.h> //own includes #include "tag.h" @@ -30,12 +30,12 @@ class Node; class KDirWatch; namespace ParserCommon{ - extern QStringList includedFiles; - extern QPtrList<const DTDStruct> includedFilesDTD; + extern TQStringList includedFiles; + extern TQPtrList<const DTDStruct> includedFilesDTD; extern KDirWatch *includeWatch; //this methods may go in a common class as well - QString getLine(Document *write, int line, int endLine, int endCol); + TQString getLine(Document *write, int line, int endLine, int endCol); /** Appends a text area to a text node. */ void appendAreaToTextNode(Document *write, const AreaStruct &area, Node *node); /** Creates a text/empty node between node and the provided position */ @@ -47,7 +47,7 @@ namespace ParserCommon{ parentNode: the parent of the node currentNode: the last child of the parent, if it exists */ - Node* createScriptTagNode(Document *write, const AreaStruct &area, const QString &areaName, + Node* createScriptTagNode(Document *write, const AreaStruct &area, const TQString &areaName, const DTDStruct *dtd, Node *parentNode, Node *currentNode); /** Print the doc structure tree to the standard output. |