diff options
Diffstat (limited to 'src/plugins/qmljseditor/qmljswrapinloader.cpp')
-rw-r--r-- | src/plugins/qmljseditor/qmljswrapinloader.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/qmljseditor/qmljswrapinloader.cpp b/src/plugins/qmljseditor/qmljswrapinloader.cpp index d7ee184eb1..8605db7f22 100644 --- a/src/plugins/qmljseditor/qmljswrapinloader.cpp +++ b/src/plugins/qmljseditor/qmljswrapinloader.cpp @@ -132,10 +132,11 @@ public: innerIds.remove(id); QString comment = tr("// TODO: Move position bindings from the component to the Loader.\n" - "// Check all uses of 'parent' inside the root element of the component.\n"); + "// 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'.\n").arg( - id, loaderId); + comment += tr("// Rename all outer uses of the id '%1' to '%2.item'.").arg( + id, loaderId) + QLatin1Char('\n'); } // handle inner ids |