Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
5ade00d9
Commit
5ade00d9
authored
Apr 06, 2010
by
Kai Koehne
Browse files
QmlDesigner: Fix handling of multiple arguments to qml runtime
Task-number: QTCREATORBUG-1040
parent
8d384fc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp
View file @
5ade00d9
...
...
@@ -126,7 +126,7 @@ QStringList QmlProjectRunConfiguration::viewerArguments() const
// arguments in .user file
if
(
!
m_qmlViewerArgs
.
isEmpty
())
args
.
append
(
m_qmlViewerArgs
);
args
.
append
(
m_qmlViewerArgs
.
split
(
QLatin1Char
(
' '
))
);
// arguments from .qmlproject file
foreach
(
const
QString
&
importPath
,
qmlTarget
()
->
qmlProject
()
->
importPaths
())
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment