From 21314b78d97ee70c8a0afad950a0e9f10b659a50 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Date: Fri, 9 Oct 2009 10:20:42 +0200 Subject: [PATCH] rename handleAsyncOutput() => handleStopResponse() --- src/plugins/debugger/gdb/gdbengine.cpp | 4 ++-- src/plugins/debugger/gdb/gdbengine.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 260f7916065..31e192cefc3 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 dc019ea5117..a0b74f199e4 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); -- GitLab