Changeset 28368 in osm for applications/editors


Ignore:
Timestamp:
2012-04-29T20:08:59+02:00 (13 years ago)
Author:
jttt
Message:

compilation problem

Location:
applications/editors/josm/plugins/tageditor
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/LaunchAction.java

    r27869 r28368  
    77import java.util.Collection;
    88
    9 import javax.swing.JMenu;
    10 import javax.swing.JMenuBar;
    11 import javax.swing.JMenuItem;
    12 import javax.swing.KeyStroke;
    13 
    14 import org.openstreetmap.josm.Main;
    159import org.openstreetmap.josm.actions.JosmAction;
    1610import org.openstreetmap.josm.data.SelectionChangedListener;
     
    2418        super(
    2519                tr("Edit tags"),
    26                 null, //TODO: set "tag-editor" and add /images/tag-editor.png to distrib
     20                (String)null, //TODO: set "tag-editor" and add /images/tag-editor.png to distrib
    2721                tr("Launches the tag editor dialog"),
    2822                Shortcut.registerShortcut("edit:launchtageditor", tr("Launches the tag editor dialog"),
     
    4539    }
    4640
    47     public void actionPerformed(ActionEvent e) {
     41    @Override
     42        public void actionPerformed(ActionEvent e) {
    4843        launchEditor();
    4944    }
    5045
    51     public void selectionChanged(Collection<? extends OsmPrimitive> newSelection) {
     46    @Override
     47        public void selectionChanged(Collection<? extends OsmPrimitive> newSelection) {
    5248        setEnabled(newSelection != null && newSelection.size() >0);
    5349    }
Note: See TracChangeset for help on using the changeset viewer.