Ignore:
Timestamp:
04.09.2009 10:49:53 (3 years ago)
Author:
Gubaer
Message:

Improved auto completion
fixed #2729: Auto completion with numbers sometimes annoying (only fixed in presets, relation editor, not in property dialog)
fixed #2320: Preset dialog for house numbers should have autocompletion (auto completion now supported in all preset dialogs)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorPanel.java

    r2046 r2048  
    2020import javax.swing.event.ListSelectionListener; 
    2121 
    22 import org.openstreetmap.josm.gui.dialogs.relation.ac.AutoCompletionCache; 
    23 import org.openstreetmap.josm.gui.dialogs.relation.ac.AutoCompletionList; 
    2422import org.openstreetmap.josm.gui.layer.OsmDataLayer; 
     23import org.openstreetmap.josm.gui.tagging.ac.AutoCompletionCache; 
     24import org.openstreetmap.josm.gui.tagging.ac.AutoCompletionList; 
    2525import org.openstreetmap.josm.tools.ImageProvider; 
    2626 
     
    228228        // 
    229229        acCache = AutoCompletionCache.getCacheForLayer(layer); 
    230         acCache.initFromJOSMDataset(); 
     230        acCache.initFromDataSet(); 
    231231        acList = new AutoCompletionList(); 
    232232 
Note: See TracChangeset for help on using the changeset viewer.