Merge "Issue #2443 - fixed image memory leak." into development

Former-commit-id: 766190493e [formerly 18845668a6] [formerly 766190493e [formerly 18845668a6] [formerly ea27ffd4a3 [formerly 1ef7b46cb407dfebbf010a4b59bea8d8ef3eb595]]]
Former-commit-id: ea27ffd4a3
Former-commit-id: ec38285d85 [formerly 664971b75b]
Former-commit-id: c775ac006f
This commit is contained in:
Lee Venable 2013-10-08 10:33:03 -05:00 committed by Gerrit Code Review
commit 7d3285a04a

View file

@ -70,6 +70,7 @@ import com.raytheon.viz.ui.dialogs.ICloseCallback;
* Feb 22, 2012 14413 zhao modified to reduce calls to database
* Nov 16, 2012 1297 skorolev Changes for non-blocking dialog.
* Feb 06, 2013 1578 skorolev Fixed a cursor problem for checkboxes.
* Oct 07, 2013 #2443 lvenable Fixed image memory leak.
*
* </pre>
*
@ -1378,5 +1379,7 @@ public abstract class MonitoringAreaConfigDlg extends CaveSWTDialog implements
@Override
protected void disposed() {
controlFont.dispose();
arrowUpImg.dispose();
arrowDownImg.dispose();
}
}