Changeset 19419 in osm for applications/editors
- Timestamp:
- 2010-01-13T14:03:54+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/osmarender
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/build.xml
r19296 r19419 34 34 35 35 36 <property name="commit.message" value=" Update to JOSM r2748" />37 <property name="plugin.main.version" value="2 748" />36 <property name="commit.message" value="Fixed #4360 - osmarender plugin does not load" /> 37 <property name="plugin.main.version" value="2830" /> 38 38 39 39 <target name="init"> -
applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java
r19296 r19419 32 32 import org.openstreetmap.josm.gui.MainMenu; 33 33 import org.openstreetmap.josm.gui.MapFrame; 34 import org.openstreetmap.josm.gui.preferences.PreferenceDialog;35 34 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 36 35 import org.openstreetmap.josm.gui.preferences.PreferenceTabbedPane; 37 36 import org.openstreetmap.josm.io.OsmWriter; 38 37 import org.openstreetmap.josm.plugins.Plugin; 38 import org.openstreetmap.josm.plugins.PluginInformation; 39 39 import org.openstreetmap.josm.tools.GBC; 40 40 … … 105 105 private JMenuItem osmarenderMenu; 106 106 107 public OsmarenderPlugin() throws IOException { 107 public OsmarenderPlugin(PluginInformation info) throws IOException { 108 super(info); 108 109 osmarenderMenu = MainMenu.add(Main.main.menu.viewMenu, new Action()); 109 110 osmarenderMenu.setVisible(false);
Note:
See TracChangeset
for help on using the changeset viewer.