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
4b0060c5
Commit
4b0060c5
authored
Oct 15, 2009
by
Oswald Buddenhagen
Browse files
adapters don't need to set DebuggerNotReady state
parent
de9b4e83
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/attachgdbadapter.cpp
View file @
4b0060c5
...
...
@@ -163,7 +163,6 @@ void AttachGdbAdapter::handleExit(const GdbResponse &response)
void
AttachGdbAdapter
::
handleGdbFinished
(
int
,
QProcess
::
ExitStatus
)
{
debugMessage
(
_
(
"GDB PROESS FINISHED"
));
setState
(
DebuggerNotReady
);
emit
adapterShutDown
();
}
...
...
src/plugins/debugger/gdb/coregdbadapter.cpp
View file @
4b0060c5
...
...
@@ -212,7 +212,6 @@ void CoreGdbAdapter::handleExit(const GdbResponse &response)
void
CoreGdbAdapter
::
handleGdbFinished
(
int
,
QProcess
::
ExitStatus
)
{
debugMessage
(
_
(
"GDB PROESS FINISHED"
));
setState
(
DebuggerNotReady
);
emit
adapterShutDown
();
}
...
...
src/plugins/debugger/gdb/remotegdbadapter.cpp
View file @
4b0060c5
...
...
@@ -280,7 +280,6 @@ void RemoteGdbAdapter::handleExit(const GdbResponse &response)
void
RemoteGdbAdapter
::
handleGdbFinished
(
int
,
QProcess
::
ExitStatus
)
{
debugMessage
(
_
(
"GDB PROESS FINISHED"
));
setState
(
DebuggerNotReady
);
emit
adapterShutDown
();
}
...
...
src/plugins/debugger/gdb/trkgdbadapter.cpp
View file @
4b0060c5
...
...
@@ -1548,7 +1548,6 @@ void TrkGdbAdapter::handleGdbFinished(int exitCode, QProcess::ExitStatus exitSta
emitDelayedAdapterStartFailed
(
msg
);
// Potentially emitted from QProcess::start() on Windows
}
else
{
logMessage
(
msg
);
setState
(
DebuggerNotReady
);
emit
adapterShutDown
();
}
}
...
...
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