Changeset 19300 in osm
- Timestamp:
- 2010-01-06T21:18:38+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routing/build.xml
r19066 r19300 27 27 <project name="routing" default="dist" basedir="."> 28 28 29 <property name="commit.message" value="Update to JOSM 2 621" />30 <property name="plugin.main.version" value="2 621" />29 <property name="commit.message" value="Update to JOSM 2748" /> 30 <property name="plugin.main.version" value="2748" /> 31 31 32 32 <!-- Define some properties --> -
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingPreferenceDialog.java
r15707 r19300 57 57 import org.openstreetmap.josm.gui.preferences.PreferenceDialog; 58 58 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 59 import org.openstreetmap.josm.gui.preferences.PreferenceTabbedPane; 59 60 import org.openstreetmap.josm.tools.GBC; 60 61 … … 80 81 } 81 82 82 public void addGui(final Preference Dialoggui) {83 public void addGui(final PreferenceTabbedPane gui) { 83 84 84 85 JPanel principal = gui.createPreferenceTab("routing", … … 187 188 } 188 189 189 private void edit(final Preference Dialoggui, final JTable list) {190 private void edit(final PreferenceTabbedPane gui, final JTable list) { 190 191 if (list.getSelectedRowCount() != 1) { 191 192 JOptionPane.showMessageDialog(gui,
Note:
See TracChangeset
for help on using the changeset viewer.