Changeset 7146 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2014-05-19T18:17:18+02:00 (10 years ago)
Author:
simon04
Message:

see #10037 - Improve class name

Location:
trunk/src/org/openstreetmap/josm
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/SelectByInternalPointAction.java

    r7145 r7146  
    2020 * This allows to select a polygon/multipolgon by an internal point.
    2121 */
    22 public class SelectByInternalAction extends JosmAction {
     22public class SelectByInternalPointAction extends JosmAction {
    2323
    2424    /**
  • trunk/src/org/openstreetmap/josm/gui/SelectionManager.java

    r7144 r7146  
    1616
    1717import org.openstreetmap.josm.Main;
    18 import org.openstreetmap.josm.actions.SelectByInternalAction;
     18import org.openstreetmap.josm.actions.SelectByInternalPointAction;
    1919import org.openstreetmap.josm.data.osm.Node;
    2020import org.openstreetmap.josm.data.osm.OsmPrimitive;
     
    152152    public void mousePressed(MouseEvent e) {
    153153        if (e.getButton() == MouseEvent.BUTTON1 && e.getClickCount() > 1) {
    154             SelectByInternalAction.performSelection(Main.map.mapView.getEastNorth(e.getX(), e.getY()),
     154            SelectByInternalPointAction.performSelection(Main.map.mapView.getEastNorth(e.getX(), e.getY()),
    155155                    (e.getModifiersEx() & MouseEvent.SHIFT_DOWN_MASK) > 0,
    156156                    (e.getModifiersEx() & MouseEvent.CTRL_DOWN_MASK) > 0);
Note: See TracChangeset for help on using the changeset viewer.