1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

Bug 458566 - [visualizer] NPE Closing the visualizer when the debug view is not present

Change-Id: I330a91f78504c4430dc39bd58dfb309a3ef6c18a
This commit is contained in:
Alvaro Sanchez-Leon 2015-01-27 13:16:37 -05:00
parent d0476b4ae0
commit d95f95521e

View file

@ -517,6 +517,10 @@ public class MulticoreVisualizer extends GraphicCanvasVisualizer
/** Cleans up actions. */
protected void disposeActions() {
if (!m_actionsInitialized) {
return;
}
if (m_resumeAction != null) {
m_resumeAction.dispose();
m_resumeAction = null;