summaryrefslogtreecommitdiffstats
path: root/khtml/ecma/domparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'khtml/ecma/domparser.cpp')
-rw-r--r--khtml/ecma/domparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/khtml/ecma/domparser.cpp b/khtml/ecma/domparser.cpp
index 63a9dce36..672754a45 100644
--- a/khtml/ecma/domparser.cpp
+++ b/khtml/ecma/domparser.cpp
@@ -88,8 +88,8 @@ Value DOMParserProtoFunc::tryCall(ExecState *exec, Object &thisObj, const List &
return Undefined();
}
- QString str = args[0].toString(exec).qstring();
- QString contentType = args[1].toString(exec).qstring().stripWhiteSpace();
+ TQString str = args[0].toString(exec).qstring();
+ TQString contentType = args[1].toString(exec).qstring().stripWhiteSpace();
if (contentType == "text/xml" || contentType == "application/xml" || contentType == "application/xhtml+xml") {
DocumentImpl *docImpl = parser->doc->implementation()->createDocument();