Changeset 24887 in osm for applications/editors/josm
- Timestamp:
- 2010-12-27T17:55:15+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/reverter
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/build.xml
r23278 r24887 33 33 <property name="commit.message" value="fix bug with handling for incomplete relation members" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value="3 403" />35 <property name="plugin.main.version" value="3746" /> 36 36 37 37 -
applications/editors/josm/plugins/reverter/src/reverter/RevertChangesetCommand.java
r24882 r24887 15 15 super(name, sequenz); 16 16 this.name = name; 17 ReverterPlugin.reverterUsed = true; 17 18 } 18 19 -
applications/editors/josm/plugins/reverter/src/reverter/ReverterPlugin.java
r23192 r24887 9 9 10 10 import org.openstreetmap.josm.Main; 11 import org.openstreetmap.josm.actions.UploadAction; 11 12 import org.openstreetmap.josm.gui.MainMenu; 12 13 import org.openstreetmap.josm.plugins.Plugin; … … 14 15 15 16 public class ReverterPlugin extends Plugin { 17 static boolean reverterUsed = false; 16 18 public ReverterPlugin(PluginInformation info) { 17 19 super(info); … … 20 22 //MainMenu.add(historyMenu, new ObjectsHistoryAction()); 21 23 MainMenu.add(historyMenu, new RevertChangesetAction()); 24 UploadAction.registerUploadHook(new ReverterUploadHook(this)); 22 25 } 23 26 }
Note:
See TracChangeset
for help on using the changeset viewer.