Changeset 13498 in josm


Ignore:
Timestamp:
2018-03-04T15:31:39+01:00 (6 years ago)
Author:
Don-vip
Message:

fix typo

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  
    9292     * Updates GUI components of the panel according to the bbox changes.
    9393     * @param bbox The new value for the bounding box.
     94     * @deprecated Use {@link #boundingBoxChanged} instead
    9495     */
     96    @Deprecated
    9597    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) {
    96107        // override this if the panel must react on bbox changes
    97108    }
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java

    r12903 r13498  
    266266     * @param eventSource - the DownloadSelection object that fired this notification.
    267267     */
     268    @SuppressWarnings("deprecation")
    268269    public void boundingBoxChanged(Bounds b, DownloadSelection eventSource) {
    269270        this.currentBounds = b;
     
    275276
    276277        for (AbstractDownloadSourcePanel<?> ds : downloadSourcesTab.getAllPanels()) {
     278            ds.boundingBoxChanged(b);
    277279            ds.boudingBoxChanged(b);
    278280        }
Note: See TracChangeset for help on using the changeset viewer.