Debugger: Remove some unused and forgotten function

Change-Id: Ic9d0e609dbc41aeed292f3d069ebfc0c6ef324ee
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2016-11-15 08:52:31 +01:00
parent 7e904c4d74
commit 0df4c0bd5f
2 changed files with 0 additions and 8 deletions

View File

@@ -692,13 +692,6 @@ bool DebuggerToolTipContext::isSame(const DebuggerToolTipContext &other) const
&& filesMatch(fileName, other.fileName); && filesMatch(fileName, other.fileName);
} }
void DebuggerToolTipContext::appendFormatRequest(DebuggerCommand *cmd) const
{
cmd->arg("expression", expression);
cmd->arg("fileName", fileName);
cmd->arg("iname", iname);
}
QString DebuggerToolTipContext::toolTip() const QString DebuggerToolTipContext::toolTip() const
{ {
return DebuggerToolTipManager::tr("Expression %1 in function %2 from line %3 to %4") return DebuggerToolTipManager::tr("Expression %1 in function %2 from line %3 to %4")

View File

@@ -49,7 +49,6 @@ public:
bool isValid() const { return !expression.isEmpty(); } bool isValid() const { return !expression.isEmpty(); }
bool matchesFrame(const StackFrame &frame) const; bool matchesFrame(const StackFrame &frame) const;
bool isSame(const DebuggerToolTipContext &other) const; bool isSame(const DebuggerToolTipContext &other) const;
void appendFormatRequest(DebuggerCommand *cmd) const;
QString toolTip() const; QString toolTip() const;
QString fileName; QString fileName;