diff options
author | hjk <qtc-committer@nokia.com> | 2012-01-12 20:28:17 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-01-16 16:33:43 +0100 |
commit | 496e9fafd0a321a923e96bdddd03617feb18f2ad (patch) | |
tree | 07684c3d835450fdd0b5bc15e3e863d2698e7d46 /src/plugins/debugger/breakhandler.cpp | |
parent | 1c1b3840c594004801817befdd192c19f7f659c4 (diff) | |
download | qt-creator-496e9fafd0a321a923e96bdddd03617feb18f2ad.tar.gz |
debugger: replace static capability check by something potentially dynamic
This does not yet use the potential.
Change-Id: I087311fb7d59b46e49f65a84c4420c72a1227ebb
Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r-- | src/plugins/debugger/breakhandler.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index 2149de4469..d7ebf6f10f 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -683,12 +683,6 @@ QVariant BreakHandler::data(const QModelIndex &mi, int role) const if (debuggerCore()->boolSetting(UseToolTipsInBreakpointsView)) return QVariant(it->toToolTip()); break; - case EngineCapabilitiesRole: { - const unsigned caps = it.value().engine ? - it.value().engine->debuggerCapabilities() : - unsigned(AllDebuggerCapabilities); - return QVariant(caps); - } } return QVariant(); } |