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
1e96c679
Commit
1e96c679
authored
Oct 29, 2009
by
Oswald Buddenhagen
Browse files
fix substituent in error message
parent
a3b52c5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
1e96c679
...
...
@@ -4119,7 +4119,7 @@ bool GdbEngine::startGdb(const QStringList &args, const QString &gdb, const QStr
m_gdbProc
.
start
(
location
,
gdbArgs
);
if
(
!
m_gdbProc
.
waitForStarted
())
{
const
QString
msg
=
tr
(
"Unable to start gdb '%1': %2"
).
arg
(
gdb
,
m_gdbProc
.
errorString
());
const
QString
msg
=
tr
(
"Unable to start gdb '%1': %2"
).
arg
(
location
,
m_gdbProc
.
errorString
());
handleAdapterStartFailed
(
msg
,
settingsIdHint
);
return
false
;
}
...
...
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