diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
commit | dc6b8e72fed2586239e3514819238c520636c9d9 (patch) | |
tree | 88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/parsers/parsercommon.h | |
parent | 6927d4436e54551917f600b706a8d6109e49de1c (diff) | |
download | tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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. |