Changeset 32099 in osm for applications/editors/josm/plugins
- Timestamp:
- 2016-03-06T17:09:15+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/CopyTagsAction.java
r32018 r32099 34 34 super(tr("Copy Tags"), "copy", 35 35 tr("Copy all tags of selected objects to paste buffer."), 36 createShortcut(), true );36 createShortcut(), true, CopyTagsAction.class.getName(), true); 37 37 putValue("help", ht("/Action/CopyTags")); 38 38 } -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceMembershipAction.java
r32097 r32099 30 30 public ReplaceMembershipAction() { 31 31 super( 32 tr("Replace Membership"), null, 33 tr("In relations where the selected object is member of, replace it with a new one"), null, false); 32 tr("Replace Membership"), (String) null, 33 tr("In relations where the selected object is member of, replace it with a new one"), null, false, 34 ReplaceMembershipAction.class.getName(), true); 34 35 } 35 36
Note:
See TracChangeset
for help on using the changeset viewer.