Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-05-06 06:58:22 +0000
committerSarika Sinha2016-06-10 04:32:39 +0000
commitf581d65016c97805267bedea80d1b7c693d4da0a (patch)
tree7534d2d63550301e449c15092a3d3a0d403558fb /org.eclipse.debug.ui/ui/org/eclipse/debug/ui
parent7a89261733383e4f0031254bb0100ad9f6796024 (diff)
downloadeclipse.platform.debug-f581d65016c97805267bedea80d1b7c693d4da0a.tar.gz
eclipse.platform.debug-f581d65016c97805267bedea80d1b7c693d4da0a.tar.xz
eclipse.platform.debug-f581d65016c97805267bedea80d1b7c693d4da0a.zip
Bug 469512 - AbstractDebugView.fUpdateables may have multiple actions
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
index 50ea022d9..d6dcd56e8 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -710,7 +710,7 @@ public abstract class AbstractDebugView extends PageBookView implements IDebugVi
} else {
fActionMap.put(actionID, action);
if (action instanceof IUpdate) {
- fUpdateables.add((IUpdate) action);
+ add((IUpdate) action);
}
}
if (fgGlobalActionIds.contains(actionID)) {

Back to the top