Debugger: Remove unused UpdateData::tooltipOnly member

Change-Id: I15c6f16a258c0d664d2378150c4b3277a29c4b5c
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-02-06 12:01:43 +01:00
parent 23b4dc128f
commit 4c63855f88
4 changed files with 2 additions and 11 deletions

View File

@@ -3683,7 +3683,6 @@ bool GdbEngine::setToolTipExpression(TextEditor::TextEditorWidget *editor,
UpdateParameters params;
params.tryPartial = true;
params.tooltipOnly = true;
params.varList = context.iname;
updateLocalsPython(params);
return true;
@@ -3731,9 +3730,7 @@ void GdbEngine::updateWatchData(const WatchData &data, const WatchUpdateFlags &f
// << (m_pendingBreakpointRequests == 0);
UpdateParameters params;
params.tooltipOnly = data.iname.startsWith("tooltip");
params.tryPartial = flags.tryIncremental
&& m_pendingBreakpointRequests == 0;
params.tryPartial = flags.tryIncremental && m_pendingBreakpointRequests == 0;
params.varList = data.iname;
updateLocalsPython(params);
@@ -4813,8 +4810,6 @@ void GdbEngine::updateLocalsPython(const UpdateParameters &params)
options += "defaults,";
if (params.tryPartial)
options += "partial,";
if (params.tooltipOnly)
options += "tooltiponly,";
options.chop(1);
QByteArray context;