summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2010-04-14 15:12:23 (GMT)
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2010-04-14 15:13:51 (GMT)
commit8876c7c44744b0813f98ebbb0f748331f9d8a22c (patch)
tree3772a89bdee2ad36e51703a105209042e316ee52 /tools
parent7e33165aa680e5b334182bdb34fae0f1aca69233 (diff)
downloadQt-8876c7c44744b0813f98ebbb0f748331f9d8a22c.zip
Qt-8876c7c44744b0813f98ebbb0f748331f9d8a22c.tar.gz
Qt-8876c7c44744b0813f98ebbb0f748331f9d8a22c.tar.bz2
Added missing newline after warning message when using -L with qml
Diffstat (limited to 'tools')
-rw-r--r--tools/qml/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qml/main.cpp b/tools/qml/main.cpp
index 01b3912..d20455f 100644
--- a/tools/qml/main.cpp
+++ b/tools/qml/main.cpp
@@ -243,7 +243,7 @@ int main(int argc, char ** argv)
useNativeFileBrowser = false;
} else if (arg == "-I" || arg == "-L") {
if (arg == "-L")
- fprintf(stderr, "-L option provided for compatibility only, use -I instead");
+ fprintf(stderr, "-L option provided for compatibility only, use -I instead\n");
if (lastArg) {
QDeclarativeEngine tmpEngine;
QString paths = tmpEngine.importPathList().join(QLatin1String(":"));