summaryrefslogtreecommitdiff
path: root/src/plugins/qmljseditor
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-04-17 14:09:47 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-04-22 10:06:40 +0200
commiteccc1198d6d49707987ab3846da084e38edaf7c4 (patch)
treec4056ac7e0dfd26bc5aff3ceaed6e9fb1ec5b559 /src/plugins/qmljseditor
parentc20f40e12e0b6c5c85d0edfa349ab25b5472f06c (diff)
downloadqt-creator-eccc1198d6d49707987ab3846da084e38edaf7c4.tar.gz
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src/plugins/qmljseditor')
-rw-r--r--src/plugins/qmljseditor/qmljswrapinloader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmljseditor/qmljswrapinloader.cpp b/src/plugins/qmljseditor/qmljswrapinloader.cpp
index 214f015218..0bb860fdad 100644
--- a/src/plugins/qmljseditor/qmljswrapinloader.cpp
+++ b/src/plugins/qmljseditor/qmljswrapinloader.cpp
@@ -135,7 +135,7 @@ public:
"// Check all uses of 'parent' inside the root element of the component.")
+ QLatin1Char('\n');
if (idBinding) {
- comment += tr("// Rename all outer uses of the id '%1' to '%2.item'.").arg(
+ comment += tr("// Rename all outer uses of the id \"%1\" to \"%2.item\".").arg(
id, loaderId) + QLatin1Char('\n');
}
@@ -145,7 +145,7 @@ public:
while (it.hasNext()) {
it.next();
const QString innerId = it.key();
- comment += tr("// Rename all outer uses of the id '%1' to '%2.item.%1'.\n").arg(
+ comment += tr("// Rename all outer uses of the id \"%1\" to \"%2.item.%1\".\n").arg(
innerId, loaderId);
changes.replace(it.value().begin(), it.value().end(), QString::fromLatin1("inner_%1").arg(innerId));
innerIdForwarders += QString::fromLatin1("\nproperty alias %1: inner_%1").arg(innerId);