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
8b583a38
Commit
8b583a38
authored
Oct 01, 2009
by
hjk
Browse files
debugger: unconditionally use 'gotoLocation' on first chance
parent
3a2974b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
8b583a38
...
...
@@ -1291,14 +1291,12 @@ void GdbEngine::handleStop2(const GdbMi &data)
}
// Quick shot
if
(
fullName
.
isValid
())
{
StackFrame
f
;
f
.
file
=
QFile
::
decodeName
(
fullName
.
data
());
f
.
line
=
frame
.
findChild
(
"line"
).
data
().
toInt
();
f
.
address
=
_
(
frame
.
findChild
(
"addr"
).
data
());
f
.
function
=
_
(
frame
.
findChild
(
"func"
).
data
());
gotoLocation
(
f
,
true
);
}
StackFrame
f
;
f
.
file
=
QFile
::
decodeName
(
fullName
.
data
());
f
.
line
=
frame
.
findChild
(
"line"
).
data
().
toInt
();
f
.
address
=
_
(
frame
.
findChild
(
"addr"
).
data
());
f
.
function
=
_
(
frame
.
findChild
(
"func"
).
data
());
gotoLocation
(
f
,
true
);
//
// Stack
...
...
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