Changeset 19463 in osm
- Timestamp:
- 2010-01-13T15:03:16+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/openstreetbugs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/build.xml
r19060 r19463 27 27 <project name="openstreetbugs" default="dist" basedir="."> 28 28 29 <property name="commit.message" value=" Updated to JOSM 2621; updated build.xml" />30 <property name="plugin.main.version" value="2 621" />29 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 30 <property name="plugin.main.version" value="2830" /> 31 31 32 32 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbPlugin.java
r19363 r19463 30 30 import static org.openstreetmap.josm.tools.I18n.tr; 31 31 32 import java.net.URL;33 34 32 import javax.swing.ImageIcon; 35 33 import javax.swing.JOptionPane; … … 46 44 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 47 45 import org.openstreetmap.josm.plugins.Plugin; 46 import org.openstreetmap.josm.plugins.PluginInformation; 48 47 import org.openstreetmap.josm.plugins.osb.api.DownloadAction; 49 48 import org.openstreetmap.josm.plugins.osb.gui.OsbDialog; … … 67 66 private DownloadAction download = new DownloadAction(); 68 67 69 public OsbPlugin() { 70 super(); 68 public OsbPlugin(PluginInformation info) { 69 super(info); 71 70 initConfig(); 72 71 dataSet = new DataSet();
Note:
See TracChangeset
for help on using the changeset viewer.