QmlProject: Qml runtime command parameter -L has been replaced by -I

See commit c3a54c470 in qt
This commit is contained in:
Kai Koehne
2010-04-14 15:47:56 +02:00
parent fbfa825535
commit 3d2a83910d

View File

@@ -133,7 +133,7 @@ QStringList QmlProjectRunConfiguration::viewerArguments() const
// arguments from .qmlproject file // arguments from .qmlproject file
foreach (const QString &importPath, qmlTarget()->qmlProject()->importPaths()) { foreach (const QString &importPath, qmlTarget()->qmlProject()->importPaths()) {
args.append(QLatin1String("-L")); args.append(QLatin1String("-I"));
args.append(importPath); args.append(importPath);
} }