aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4jsonobject.cpp
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2013-11-08 15:10:51 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-09 07:01:37 +0100
commit8c1ebd4235d323801bb7866541d4d04d895d3c69 (patch)
tree13c06161bce5a791b213772ac7223af5a1bad62d /src/qml/jsruntime/qv4jsonobject.cpp
parent7f18b0ffad9964152b891c614aa96117584b7208 (diff)
Remove debug output
Some applications (like e.g. the Tweet Search example) prints out a ton of these "scanEscape" messages to the console. Change-Id: Ibfa9c4780705167693c7fb6af8cad1e312549a5f Reviewed-by: Simon Hausmann <simon.hausmann@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4jsonobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4jsonobject.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp
index 2fa5a7c0bc..458b46b36e 100644
--- a/src/qml/jsruntime/qv4jsonobject.cpp
+++ b/src/qml/jsruntime/qv4jsonobject.cpp
@@ -612,7 +612,6 @@ bool JsonParser::parseString(QString *string)
lastError = QJsonParseError::IllegalEscapeSequence;
return false;
}
- qDebug() << "scanEscape" << hex << ch;
if (QChar::requiresSurrogates(ch)) {
*string += QChar(QChar::highSurrogate(ch));
*string += QChar(QChar::lowSurrogate(ch));