Changeset 33231 in osm for applications/editors/josm/plugins/mapdust/src
- Timestamp:
- 2017-04-13T23:04:03+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/gui/MapdustGUI.java
r32787 r33231 93 93 private JPanel mainPanel; 94 94 95 /** Specifies if the MapDust data was or not down-loaded */ 96 private boolean downloaded = false; 95 /** Specifies if the MapDust data was or not downloaded */ 96 private boolean downloaded; 97 98 /** Remembers if the dialog has been destroyed */ 99 private boolean destroyed; 97 100 98 101 /** … … 152 155 downloaded = false; 153 156 button.setSelected(false); 154 super.destroy(); 157 if (!destroyed) { 158 super.destroy(); 159 destroyed = true; 160 } 155 161 } 156 162
Note:
See TracChangeset
for help on using the changeset viewer.