Issue #2409 - Add widget disposed check
Change-Id: Idd73e96d7704184392eb6297b87957126a286a72 Former-commit-id:724e262578
[formerlyc36d6b4670
] [formerly18791bc1e8
] [formerlyd3ade70500
[formerly18791bc1e8
[formerly 6b3df536a3052028c72841e22b65c381fd070742]]] Former-commit-id:d3ade70500
Former-commit-id: f2cf5e0d3044fb39b6faf7402d3db136afb74911 [formerlyf9ec1168ac
] Former-commit-id:d04f33910a
This commit is contained in:
parent
b56e40e2db
commit
7fc647de33
1 changed files with 6 additions and 2 deletions
|
@ -126,7 +126,8 @@ import com.raytheon.viz.ui.presenter.IDisplay;
|
||||||
* Jun 05, 2013 2064 mpduff Fix for filtering combo boxes.
|
* Jun 05, 2013 2064 mpduff Fix for filtering combo boxes.
|
||||||
* Jun 06, 2013 2030 mpduff Refactored help.
|
* Jun 06, 2013 2030 mpduff Refactored help.
|
||||||
* Jun 14, 2013 2064 mpduff Check for null/disposed sort column.
|
* Jun 14, 2013 2064 mpduff Check for null/disposed sort column.
|
||||||
* Jul 26, 2031 2232 mpduff Refactored Data Delivery permissions.
|
* Jul 26, 2013 2232 mpduff Refactored Data Delivery permissions.
|
||||||
|
* Sep 25. 2013 2409 mpduff Add check for widget disposed after calling configuration.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @author mpduff
|
* @author mpduff
|
||||||
|
@ -918,7 +919,10 @@ public class SubscriptionManagerDlg extends CaveSWTDialog implements
|
||||||
} else {
|
} else {
|
||||||
configDlg.bringToTop();
|
configDlg.bringToTop();
|
||||||
}
|
}
|
||||||
handleTooltipSelection(tooltipMI.getSelection());
|
|
||||||
|
if (!this.isDisposed()) {
|
||||||
|
handleTooltipSelection(tooltipMI.getSelection());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue