Ignore:
Timestamp:
03.05.2010 10:52:48 (2 years ago)
Author:
bastiK
Message:

fixed #4979 Exception when opening the download window; fixed #2221 - Unexcepted Exception when typing into "Change values?" box with an input method on Mac OS X

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/HistoryComboBox.java

    r3210 r3215  
    3232 
    3333    public void setHistory(List<String> history) { 
    34         model.setItems(history); 
     34        model.setItemsAsString(history); 
    3535    } 
    3636 
    3737    public List<String> getHistory() { 
    38         return model.asList(); 
     38        return model.asStringList(); 
    3939    } 
    4040} 
Note: See TracChangeset for help on using the changeset viewer.