Changeset 2575 in josm
- Timestamp:
- 2009-12-05T16:08:16+01:00 (15 years ago)
- Location:
- trunk
- Files:
-
- 5 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r2533 r2575 38 38 import org.openstreetmap.josm.actions.InfoAction; 39 39 import org.openstreetmap.josm.actions.JoinNodeWayAction; 40 import org.openstreetmap.josm.actions.JoinAreasAction; 40 41 import org.openstreetmap.josm.actions.JosmAction; 41 42 import org.openstreetmap.josm.actions.MergeLayerAction; … … 56 57 import org.openstreetmap.josm.actions.SelectAllAction; 57 58 import org.openstreetmap.josm.actions.ShowStatusReportAction; 59 import org.openstreetmap.josm.actions.SimplifyWayAction; 58 60 import org.openstreetmap.josm.actions.SplitWayAction; 59 61 import org.openstreetmap.josm.actions.ToggleGPXLinesAction; … … 140 142 public final JosmAction joinNodeWay = new JoinNodeWayAction(); 141 143 public final JosmAction unglueNodes = new UnGlueAction(); 144 public final JosmAction simplifyWay = new SimplifyWayAction(); 145 public final JosmAction joinAreas = new JoinAreasAction(); 142 146 public final InfoAction info = new InfoAction(); 143 147 public final HistoryInfoAction historyinfo = new HistoryInfoAction(); … … 265 269 toolsMenu.addSeparator(); 266 270 add(toolsMenu, reverseWay); 271 add(toolsMenu, simplifyWay); 267 272 toolsMenu.addSeparator(); 268 273 add(toolsMenu, alignInCircle); … … 278 283 add(toolsMenu, joinNodeWay); 279 284 add(toolsMenu, unglueNodes); 285 add(toolsMenu, joinAreas); 280 286 toolsMenu.addSeparator(); 281 287 add(toolsMenu, info); -
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r2512 r2575 40 40 41 41 import org.openstreetmap.josm.Main; 42 import org.openstreetmap.josm.actions.JumpToAction; 42 43 import org.openstreetmap.josm.data.coor.CoordinateFormat; 43 44 import org.openstreetmap.josm.data.coor.LatLon; … … 501 502 this.mv = mapFrame.mapView; 502 503 504 JumpToAction JumpToAct = new JumpToAction(); 505 lonText.addMouseListener(JumpToAct); 506 latText.addMouseListener(JumpToAct); 507 503 508 // Listen for mouse movements and set the position text field 504 509 mv.addMouseMotionListener(new MouseMotionListener(){ -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r2568 r2575 46 46 "lang-ru", "ewmsplugin", "ywms", "tways-0.2", "geotagged", "landsat", 47 47 "namefinder", "waypoints", "slippy_map_chooser", "tcx-support", "usertools", 48 "AgPifoJ" };48 "AgPifoJ", "utilsplugin"}; 49 49 public static String [] unmaintained = new String[] {"gpsbabelgui", "Intersect_way"}; 50 50
Note:
See TracChangeset
for help on using the changeset viewer.