Changeset 19467 in osm for applications
- Timestamp:
- 2010-01-13T15:07:23+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/piclayer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/piclayer/build.xml
r19062 r19467 23 23 <project name="PicLayer" default="dist" basedir="."> 24 24 25 <property name="commit.message" value=" Updated to JOSM 2621; updated build.xml" />26 <property name="plugin.main.version" value="2 621" />25 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 26 <property name="plugin.main.version" value="2830" /> 27 27 28 28 <!-- -
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/PicLayerPlugin.java
r19062 r19467 29 29 import org.openstreetmap.josm.Main; 30 30 import org.openstreetmap.josm.plugins.Plugin; 31 import org.openstreetmap.josm.plugins.PluginInformation; 31 32 import org.openstreetmap.josm.gui.IconToggleButton; 32 33 import org.openstreetmap.josm.gui.MapView; … … 57 58 * Constructor... 58 59 */ 59 public PicLayerPlugin() { 60 60 public PicLayerPlugin(PluginInformation info) { 61 super(info); 62 61 63 // Create menu entry 62 64 if ( Main.main.menu != null ) {
Note:
See TracChangeset
for help on using the changeset viewer.