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
Tobias Hunger
qt-creator
Commits
9ae0575a
Commit
9ae0575a
authored
Oct 09, 2009
by
Oswald Buddenhagen
Browse files
add central GdbEngine::handleInferiorPidChanged()
fixes build
parent
fe9d0bf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
9ae0575a
...
...
@@ -658,7 +658,7 @@ void GdbEngine::maybeHandleInferiorPidChanged(const QString &pid0)
return
;
debugMessage
(
_
(
"FOUND PID %1"
).
arg
(
pid
));
m
an
ager
()
->
notify
InferiorPidChanged
(
pid
);
h
an
dle
InferiorPidChanged
(
pid
);
if
(
m_dumperInjectionLoad
)
tryLoadDebuggingHelpers
();
}
...
...
src/plugins/debugger/gdb/gdbengine.h
View file @
9ae0575a
...
...
@@ -278,6 +278,7 @@ private:
QMainWindow
*
mainWindow
()
const
;
DebuggerStartMode
startMode
()
const
;
qint64
inferiorPid
()
const
{
return
m_manager
->
inferiorPid
();
}
void
handleInferiorPidChanged
(
qint64
pid
)
{
manager
()
->
notifyInferiorPidChanged
(
pid
);
}
void
handleChildren
(
const
WatchData
&
parent
,
const
GdbMi
&
child
,
QList
<
WatchData
>
*
insertions
);
...
...
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