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/tagging/ac/AutoCompletionListItem.java

    r3214 r3215  
    2525     * constructor 
    2626     */ 
     27    public AutoCompletionListItem(String value, AutoCompletionItemPritority priority) { 
     28        this.value = value; 
     29        this.priority = priority; 
     30    } 
     31 
     32    public AutoCompletionListItem(String value) { 
     33        this.value = value; 
     34        priority = AutoCompletionItemPritority.UNKNOWN; 
     35    } 
     36 
    2737    public AutoCompletionListItem() { 
    2838        value = ""; 
     
    3040    } 
    3141 
    32     public AutoCompletionListItem(String value, AutoCompletionItemPritority priority) { 
    33         this.value = value; 
    34         this.priority = priority; 
    35     } 
    3642 
    3743    /** 
Note: See TracChangeset for help on using the changeset viewer.