aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/breakhandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2015-08-12 13:49:35 +0200
committerhjk <[email protected]>2016-01-06 14:06:43 +0000
commitb769156c19039bf225595b186d7fa8ea7465f6b6 (patch)
tree2f12f60fe39e9542b9276d2d56ba9556da56828b /src/plugins/debugger/breakhandler.cpp
parent31abbba9617964f8c17545f048a330255dc97179 (diff)
Debugger: Mark pending C++ breakpoints with hour glass icon
Change-Id: If012953f8fb1e2705244ffe9f02c6bbbbc9d93c1 Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r--src/plugins/debugger/breakhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp
index 5629c9bee82..23cd6bfc634 100644
--- a/src/plugins/debugger/breakhandler.cpp
+++ b/src/plugins/debugger/breakhandler.cpp
@@ -1441,7 +1441,7 @@ QIcon BreakpointItem::icon() const
return BreakHandler::watchpointIcon();
if (!m_params.enabled)
return BreakHandler::disabledBreakpointIcon();
- if (m_state == BreakpointInserted)
+ if (m_state == BreakpointInserted && !m_response.pending)
return BreakHandler::breakpointIcon();
return BreakHandler::pendingBreakpointIcon();
}