Skip to content
Snippets Groups Projects
Commit 5ade00d9 authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlDesigner: Fix handling of multiple arguments to qml runtime

Task-number: QTCREATORBUG-1040
parent 8d384fc6
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,7 @@ QStringList QmlProjectRunConfiguration::viewerArguments() const ...@@ -126,7 +126,7 @@ QStringList QmlProjectRunConfiguration::viewerArguments() const
// arguments in .user file // arguments in .user file
if (!m_qmlViewerArgs.isEmpty()) if (!m_qmlViewerArgs.isEmpty())
args.append(m_qmlViewerArgs); args.append(m_qmlViewerArgs.split(QLatin1Char(' ')));
// arguments from .qmlproject file // arguments from .qmlproject file
foreach (const QString &importPath, qmlTarget()->qmlProject()->importPaths()) { foreach (const QString &importPath, qmlTarget()->qmlProject()->importPaths()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment