QmlProjectManager: more libraryPaths -> importPaths renames.

See c722282cf3.
This commit is contained in:
Christian Kamm
2010-03-21 09:36:54 +01:00
parent d37771d7dd
commit a3187addc5
5 changed files with 13 additions and 13 deletions

View File

@@ -129,9 +129,9 @@ QStringList QmlProjectRunConfiguration::viewerArguments() const
args.append(m_qmlViewerArgs);
// arguments from .qmlproject file
foreach (const QString &libraryPath, qmlTarget()->qmlProject()->libraryPaths()) {
foreach (const QString &importPath, qmlTarget()->qmlProject()->importPaths()) {
args.append(QLatin1String("-L"));
args.append(libraryPath);
args.append(importPath);
}
const QString s = mainScript();