Changeset 32278 in osm for applications/editors/josm/plugins/OSMRecPlugin/src/org
- Timestamp:
- 2016-06-16T05:29:37+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/OSMRecPlugin/src/org/openstreetmap/josm/plugins/osmrec/MenuExportAction.java
r31106 r32278 11 11 * 12 12 */ 13 public class MenuExportAction extends JosmAction { 13 14 14 public class MenuExportAction extends JosmAction { 15 16 public MenuExportAction(){ 17 super(tr("OSM Recommendation"), "images/dialogs/logo-osmrec.png", 18 tr("Recommend categories to your newly created instances."), null, false); 15 /** 16 * Constructs a new {@code MenuExportAction}. 17 */ 18 public MenuExportAction(){ 19 super(tr("OSM Recommendation"), "dialogs/logo-osmrec.png", 20 tr("Recommend categories to your newly created instances."), null, false); 19 21 } 20 22 21 23 @Override 22 24 public void actionPerformed(ActionEvent arg0) { 23 24 if( OSMRecPlugin.getCurrentMapFrame() !=null ){ 25 if (OSMRecPlugin.getCurrentMapFrame() != null) { 25 26 OSMRecToggleDialog pro = new OSMRecToggleDialog(); 26 27 OSMRecPlugin.getCurrentMapFrame().addToggleDialog(pro);
Note:
See TracChangeset
for help on using the changeset viewer.