Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
322c5378
Commit
322c5378
authored
Dec 15, 2010
by
Kai Koehne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QmlCppDebugging: Make sure command line args have spaces in between
parent
d360aa06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/plugins/debugger/debuggerrunner.cpp
src/plugins/debugger/debuggerrunner.cpp
+3
-2
No files found.
src/plugins/debugger/debuggerrunner.cpp
View file @
322c5378
...
...
@@ -53,6 +53,7 @@
#include <utils/synchronousprocess.h>
#include <utils/qtcassert.h>
#include <utils/fancymainwindow.h>
#include <utils/qtcprocess.h>
#include <coreplugin/icore.h>
#include <QtCore/QDir>
...
...
@@ -628,8 +629,8 @@ static DebuggerStartParameters localStartParameters(RunConfiguration *runConfigu
sp
.
projectBuildDir
=
runConfiguration
->
target
()
->
activeBuildConfiguration
()
->
buildDirectory
();
sp
.
processArgs
.
append
(
QLatin1String
(
"-qmljsdebugger=port:"
)
+
QString
::
number
(
sp
.
qmlServerPort
));
Utils
::
QtcProcess
::
addArg
(
&
sp
.
processArgs
,
QLatin1String
(
"-qmljsdebugger=port:"
)
+
QString
::
number
(
sp
.
qmlServerPort
));
}
// FIXME: If it's not yet build this will be empty and not filled
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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