Changeset 27857 in osm for applications/editors/josm/plugins/routing/src/com/innovant
- Timestamp:
- 2012-02-18T15:10:01+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingPreferenceDialog.java
r23561 r27857 55 55 import org.apache.log4j.Logger; 56 56 import org.openstreetmap.josm.Main; 57 import org.openstreetmap.josm.gui.preferences. PreferenceSetting;57 import org.openstreetmap.josm.gui.preferences.DefaultTabPreferenceSetting; 58 58 import org.openstreetmap.josm.gui.preferences.PreferenceTabbedPane; 59 59 import org.openstreetmap.josm.tools.GBC; … … 61 61 import com.innovant.josm.jrt.osm.OsmWayTypes; 62 62 63 public class RoutingPreferenceDialog implementsPreferenceSetting {63 public class RoutingPreferenceDialog extends DefaultTabPreferenceSetting { 64 64 65 65 /** … … 75 75 */ 76 76 public RoutingPreferenceDialog() { 77 super( );77 super("routing", tr("Routing Plugin Preferences"), tr("Configure routing preferences.")); 78 78 readPreferences(); 79 79 } … … 81 81 public void addGui(final PreferenceTabbedPane gui) { 82 82 83 JPanel principal = gui.createPreferenceTab("routing", 84 tr("Routing Plugin Preferences"), tr("Configure routing preferences.")); 83 JPanel principal = gui.createPreferenceTab(this); 85 84 86 85 JPanel p = new JPanel();
Note:
See TracChangeset
for help on using the changeset viewer.