forked from qt-creator/qt-creator
Debugger: Remove unused UpdateParameters::tooltipExpression member
Change-Id: I61360b151ac8e6181b0635437468b4cd897c9ee8 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -3684,7 +3684,6 @@ bool GdbEngine::setToolTipExpression(TextEditor::TextEditorWidget *editor,
|
|||||||
UpdateParameters params;
|
UpdateParameters params;
|
||||||
params.tryPartial = true;
|
params.tryPartial = true;
|
||||||
params.tooltipOnly = true;
|
params.tooltipOnly = true;
|
||||||
params.tooltipExpression = context.expression;
|
|
||||||
params.varList = context.iname;
|
params.varList = context.iname;
|
||||||
updateLocalsPython(params);
|
updateLocalsPython(params);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -789,7 +789,6 @@ bool LldbEngine::setToolTipExpression(TextEditor::TextEditorWidget *editorWidget
|
|||||||
UpdateParameters params;
|
UpdateParameters params;
|
||||||
params.tryPartial = true;
|
params.tryPartial = true;
|
||||||
params.tooltipOnly = true;
|
params.tooltipOnly = true;
|
||||||
params.tooltipExpression = context.expression;
|
|
||||||
params.varList = context.iname;
|
params.varList = context.iname;
|
||||||
doUpdateLocals(params);
|
doUpdateLocals(params);
|
||||||
|
|
||||||
|
|||||||
@@ -160,7 +160,6 @@ public:
|
|||||||
bool tryPartial;
|
bool tryPartial;
|
||||||
bool tooltipOnly;
|
bool tooltipOnly;
|
||||||
QByteArray varList;
|
QByteArray varList;
|
||||||
QString tooltipExpression;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef QHash<QString, QStringList> DumperTypeFormats; // Type name -> Dumper Formats
|
typedef QHash<QString, QStringList> DumperTypeFormats; // Type name -> Dumper Formats
|
||||||
|
|||||||
Reference in New Issue
Block a user