Skip to content
GitLab
Menu
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
86284e43
Commit
86284e43
authored
Jun 16, 2009
by
Friedemann Kleint
Browse files
Fixed arguments glitch (ignore empty arguments).
parent
e86e7f96
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
86284e43
...
...
@@ -1210,7 +1210,9 @@ void DebuggerPlugin::startExternalApplication()
setConfigValue
(
_
(
"LastExternalExecutableArguments"
),
dlg
.
executableArguments
());
sp
->
executable
=
dlg
.
executableFile
();
sp
->
processArgs
=
dlg
.
executableArguments
().
split
(
QLatin1Char
(
' '
));
if
(
!
dlg
.
executableArguments
().
isEmpty
())
sp
->
processArgs
=
dlg
.
executableArguments
().
split
(
QLatin1Char
(
' '
));
if
(
dlg
.
breakAtMain
())
m_manager
->
breakByFunctionMain
();
...
...
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