diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 260f791606514a970ffd71767cc810b279eddded..31e192cefc35701d5d9a840e2caffa43cc9ffceb 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -424,7 +424,7 @@ void GdbEngine::handleResponse(const QByteArray &buff) } } if (asyncClass == "stopped") { - handleAsyncOutput(result); + handleStopResponse(result); } else if (asyncClass == "running") { // Archer has 'thread-id="all"' here } else if (asyncClass == "library-loaded") { @@ -1014,7 +1014,7 @@ void GdbEngine::handleAqcuiredInferior() } #endif -void GdbEngine::handleAsyncOutput(const GdbMi &data) +void GdbEngine::handleStopResponse(const GdbMi &data) { const QByteArray reason = data.findChild("reason").data(); diff --git a/src/plugins/debugger/gdb/gdbengine.h b/src/plugins/debugger/gdb/gdbengine.h index dc019ea5117cbd77084254edc8cb95711228ba56..a0b74f199e430e83ea69ab8c06c4ca60d4e402cb 100644 --- a/src/plugins/debugger/gdb/gdbengine.h +++ b/src/plugins/debugger/gdb/gdbengine.h @@ -257,7 +257,7 @@ private: int terminationIndex(const QByteArray &buffer, int &length); void handleResponse(const QByteArray &buff); void handleStart(const GdbResponse &response); - void handleAsyncOutput(const GdbMi &data); + void handleStopResponse(const GdbMi &data); void handleStop1(const GdbResponse &response); void handleStop2(const GdbResponse &response); void handleStop2(const GdbMi &data);