Issue #2409 - Add widget disposed check
Change-Id: Idd73e96d7704184392eb6297b87957126a286a72 Former-commit-id: 6b3df536a3052028c72841e22b65c381fd070742
This commit is contained in:
parent
9d60aeeca6
commit
18791bc1e8
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 06, 2013 2030 mpduff Refactored help.
|
||||
* 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>
|
||||
*
|
||||
* @author mpduff
|
||||
|
@ -918,7 +919,10 @@ public class SubscriptionManagerDlg extends CaveSWTDialog implements
|
|||
} else {
|
||||
configDlg.bringToTop();
|
||||
}
|
||||
handleTooltipSelection(tooltipMI.getSelection());
|
||||
|
||||
if (!this.isDisposed()) {
|
||||
handleTooltipSelection(tooltipMI.getSelection());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue