From f4536754b49d1aa39843dfa24c88c903a535ff35 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 6 Feb 2013 10:28:13 +0100 Subject: [PATCH] Qml: Use QString::append(QStringRef) overload in ProcessAST::asString Change-Id: Ifc9d276e0d4f9e2ff9a89c7edbe34a04ab080774 Reviewed-by: Kai Koehne --- src/qml/qml/qqmlscript.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/qml/qml/qqmlscript.cpp b/src/qml/qml/qqmlscript.cpp index 2f8750e..613ff24 100644 --- a/src/qml/qml/qqmlscript.cpp +++ b/src/qml/qml/qqmlscript.cpp @@ -651,7 +651,7 @@ QString ProcessAST::asString(AST::UiQualifiedId *node) const QString s; for (AST::UiQualifiedId *it = node; it; it = it->next) { - s.append(it->name.toString()); + s.append(it->name); if (it->next) s.append(QLatin1Char('.')); -- 1.7.2.5