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

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

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();
}
}