Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2004-04-20 17:17:25 +0000
committerKevin Barnes2004-04-20 17:17:25 +0000
commit5a3ff0bc741b419b640a39009a6c238201646950 (patch)
treef7c5c4fce1bccbb62e0d62114df8e6b32cf7a3bf /org.eclipse.debug.ui
parenta2f9afb1c5128bcfd9f228188296d68248f62178 (diff)
downloadeclipse.platform.debug-5a3ff0bc741b419b640a39009a6c238201646950.tar.gz
eclipse.platform.debug-5a3ff0bc741b419b640a39009a6c238201646950.tar.xz
eclipse.platform.debug-5a3ff0bc741b419b640a39009a6c238201646950.zip
Bug 58957 - breakpoints : Remove BreakpointManagerListener on dispose
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java
index 40b2497c2..dbfd6ed61 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java
@@ -191,7 +191,7 @@ public class BreakpointsView extends AbstractDebugView implements ISelectionList
((ShowSupportedBreakpointsAction)action).dispose();
}
getSite().getPage().removeSelectionListener(IDebugUIConstants.ID_DEBUG_VIEW, this);
-
+ DebugPlugin.getDefault().getBreakpointManager().removeBreakpointManagerListener(this);
super.dispose();
if (getEventHandler() != null) {

Back to the top