Changeset 16848 in osm
- Timestamp:
- 2009-08-04T17:02:45+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/tageditor
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r16844 r16848 85 85 <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/> 86 86 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/TagEditor"/> 87 <attribute name="Plugin-Mainversion" value="1 815"/>87 <attribute name="Plugin-Mainversion" value="1900"/> 88 88 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 89 89 </manifest> -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/ac/AutoCompletionCache.java
r16574 r16848 1 1 package org.openstreetmap.josm.plugins.tageditor.ac; 2 3 import static org.openstreetmap.josm.plugins.tageditor.josm.CompatibilityUtil.getCurrentDataSet; 2 4 3 5 import java.util.ArrayList; … … 6 8 import java.util.List; 7 9 8 import org.openstreetmap.josm.Main;9 10 import org.openstreetmap.josm.data.osm.OsmPrimitive; 10 import static org.openstreetmap.josm.plugins.tageditor.josm.CompatibilityUtil.getCurrentDataSet;11 11 /** 12 12 * AutoCompletionCache temporarily holds a cache of keys with a list of -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/ac/AutoCompletionContext.java
r16574 r16848 1 1 package org.openstreetmap.josm.plugins.tageditor.ac; 2 2 3 import org.openstreetmap.josm.Main;4 3 import static org.openstreetmap.josm.plugins.tageditor.josm.CompatibilityUtil.getCurrentDataSet; 5 4 -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/ac/AutoCompletionListViewer.java
r14324 r16848 5 5 import java.awt.Color; 6 6 import java.awt.Dimension; 7 import java.awt.event.KeyListener;8 7 import java.awt.event.MouseAdapter; 9 8 import java.awt.event.MouseEvent; -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/preset/Presets.java
r14326 r16848 19 19 20 20 import org.openstreetmap.josm.Main; 21 import org.openstreetmap.josm.gui.OptionPaneUtil; 21 22 import org.openstreetmap.josm.io.MirroredInputStream; 22 23 import org.openstreetmap.josm.plugins.tageditor.preset.io.Parser; … … 65 66 } catch(PresetIOException e) { 66 67 logger.log(Level.SEVERE, tr("Could not read tagging preset source: {0}", source),e); 67 JOptionPane.showMessageDialog(Main.parent, tr("Could not read tagging preset source: {0}",source)); 68 OptionPaneUtil.showMessageDialog( 69 Main.parent, tr("Could not read tagging preset source: {0}",source), 70 tr("Error"), 71 JOptionPane.ERROR_MESSAGE); 68 72 } catch (IOException e) { 69 73 e.printStackTrace(); 70 JOptionPane.showMessageDialog(Main.parent, tr("Could not read tagging preset source: {0}",source)); 74 JOptionPane.showMessageDialog( 75 Main.parent, 76 tr("Could not read tagging preset source: {0}",source), 77 tr("Error"), 78 JOptionPane.ERROR_MESSAGE 79 ); 71 80 } 72 81 }
Note:
See TracChangeset
for help on using the changeset viewer.