QmlJS: Remove spurious spaces from default import path in qmlproject.

What about paths that actually contain spaces?

Reviewed-by: Erik Verbruggen
This commit is contained in:
Christian Kamm
2010-06-24 13:45:54 +02:00
parent 74fd5a560f
commit 51a75e3c20
2 changed files with 2 additions and 2 deletions

View File

@@ -156,7 +156,7 @@ Core::GeneratedFiles QmlProjectApplicationWizard::generateFiles(const QWizard *w
<< " }" << endl
//: Comment added to generated .qmlproject file
<< " /* " << tr("List of plugin directories passed to QML runtime", "qmlproject Template") << " */" << endl
<< " // importPaths: [ \" ../exampleplugin \" ]" << endl
<< " // importPaths: [ \"../exampleplugin\" ]" << endl
<< "}" << endl;
}
Core::GeneratedFile generatedCreatorFile(creatorFileName);