Ignore:
Timestamp:
2010-08-05T07:58:54+02:00 (14 years ago)
Author:
jttt
Message:

Add Dataset.add/removeSelectionListener methods, change eclipse project to java 1.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java

    r3071 r3416  
    7171    @Override
    7272    public void showNotify() {
    73         DataSet.selListeners.add(this);
     73        DataSet.addSelectionListener(this);
    7474        MapView.addLayerChangeListener(this);
    7575    }
     
    7878    public void hideNotify() {
    7979        MapView.removeLayerChangeListener(this);
    80         DataSet.selListeners.remove(this);
     80        DataSet.removeSelectionListener(this);
    8181    }
    8282
Note: See TracChangeset for help on using the changeset viewer.