mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 458566 - [visualizer] NPE Closing the visualizer when the debug view is not present
Change-Id: I330a91f78504c4430dc39bd58dfb309a3ef6c18a
This commit is contained in:
parent
d0476b4ae0
commit
d95f95521e
1 changed files with 4 additions and 0 deletions
|
@ -517,6 +517,10 @@ public class MulticoreVisualizer extends GraphicCanvasVisualizer
|
||||||
|
|
||||||
/** Cleans up actions. */
|
/** Cleans up actions. */
|
||||||
protected void disposeActions() {
|
protected void disposeActions() {
|
||||||
|
if (!m_actionsInitialized) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (m_resumeAction != null) {
|
if (m_resumeAction != null) {
|
||||||
m_resumeAction.dispose();
|
m_resumeAction.dispose();
|
||||||
m_resumeAction = null;
|
m_resumeAction = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue