diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index c7e20aae980..e8d3978b73c 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -237,15 +237,6 @@ void CdbEngine::adjustOperateByInstruction(bool operateByInstruction) runCommand({QLatin1String(m_lastOperateByInstruction ? "l-t" : "l+t"), NoFlags}); } -bool CdbEngine::canHandleToolTip(const DebuggerToolTipContext &context) const -{ - Q_UNUSED(context) - // Tooltips matching local variables are already handled in the - // base class. We don't handle anything else here in CDB - // as it can slow debugging down. - return false; -} - // Determine full path to the CDB extension library. QString CdbEngine::extensionLibraryName(bool is64Bit, bool isArm) { diff --git a/src/plugins/debugger/cdb/cdbengine.h b/src/plugins/debugger/cdb/cdbengine.h index b8afe1e2d91..2b644c68baa 100644 --- a/src/plugins/debugger/cdb/cdbengine.h +++ b/src/plugins/debugger/cdb/cdbengine.h @@ -26,8 +26,6 @@ public: explicit CdbEngine(); ~CdbEngine() override; - bool canHandleToolTip(const DebuggerToolTipContext &context) const override; - void setupEngine() override; void runEngine(); void shutdownInferior() override;