Changeset 19426 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-01-13T14:17:27+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/colorscheme
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/colorscheme/build.xml
r19290 r19426 28 28 29 29 30 <property name="commit.message" value="U pdate to JOSM r2748" />31 <property name="plugin.main.version" value="2 748" />30 <property name="commit.message" value="Uses new constructor for Plugin" /> 31 <property name="plugin.main.version" value="2830" /> 32 32 33 33 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/colorscheme/src/at/dallermassl/josm/plugin/colorscheme/ColorSchemePlugin.java
r13497 r19426 7 7 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 8 8 import org.openstreetmap.josm.plugins.Plugin; 9 import org.openstreetmap.josm.plugins.PluginInformation; 9 10 10 11 /** … … 18 19 * Default Constructor 19 20 */ 20 public ColorSchemePlugin( ) {21 21 public ColorSchemePlugin(PluginInformation info) { 22 super(info); 22 23 } 23 24
Note:
See TracChangeset
for help on using the changeset viewer.