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
Tobias Hunger
qt-creator
Commits
86284e43
Commit
86284e43
authored
Jun 16, 2009
by
Friedemann Kleint
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed arguments glitch (ignore empty arguments).
parent
e86e7f96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/plugins/debugger/debuggerplugin.cpp
src/plugins/debugger/debuggerplugin.cpp
+3
-1
No files found.
src/plugins/debugger/debuggerplugin.cpp
View file @
86284e43
...
@@ -1210,7 +1210,9 @@ void DebuggerPlugin::startExternalApplication()
...
@@ -1210,7 +1210,9 @@ void DebuggerPlugin::startExternalApplication()
setConfigValue
(
_
(
"LastExternalExecutableArguments"
),
setConfigValue
(
_
(
"LastExternalExecutableArguments"
),
dlg
.
executableArguments
());
dlg
.
executableArguments
());
sp
->
executable
=
dlg
.
executableFile
();
sp
->
executable
=
dlg
.
executableFile
();
sp
->
processArgs
=
dlg
.
executableArguments
().
split
(
QLatin1Char
(
' '
));
if
(
!
dlg
.
executableArguments
().
isEmpty
())
sp
->
processArgs
=
dlg
.
executableArguments
().
split
(
QLatin1Char
(
' '
));
if
(
dlg
.
breakAtMain
())
if
(
dlg
.
breakAtMain
())
m_manager
->
breakByFunctionMain
();
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