Changeset 13498 in josm
- Timestamp:
- 2018-03-04T15:31:39+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/download
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/AbstractDownloadSourcePanel.java
r12705 r13498 92 92 * Updates GUI components of the panel according to the bbox changes. 93 93 * @param bbox The new value for the bounding box. 94 * @deprecated Use {@link #boundingBoxChanged} instead 94 95 */ 96 @Deprecated 95 97 public void boudingBoxChanged(Bounds bbox) { 98 // override this if the panel must react on bbox changes 99 } 100 101 /** 102 * Updates GUI components of the panel according to the bbox changes. 103 * @param bbox The new value for the bounding box. 104 * @since 13498 105 */ 106 public void boundingBoxChanged(Bounds bbox) { 96 107 // override this if the panel must react on bbox changes 97 108 } -
trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java
r12903 r13498 266 266 * @param eventSource - the DownloadSelection object that fired this notification. 267 267 */ 268 @SuppressWarnings("deprecation") 268 269 public void boundingBoxChanged(Bounds b, DownloadSelection eventSource) { 269 270 this.currentBounds = b; … … 275 276 276 277 for (AbstractDownloadSourcePanel<?> ds : downloadSourcesTab.getAllPanels()) { 278 ds.boundingBoxChanged(b); 277 279 ds.boudingBoxChanged(b); 278 280 }
Note:
See TracChangeset
for help on using the changeset viewer.