Changeset 771 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2008-08-11T23:01:57+02:00 (16 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ZoomInAction.java
r770 r771 12 12 13 13 public ZoomInAction() { 14 super(tr("Zoom In"), null, tr("Zoom in"),14 super(tr("Zoom in"), null, tr("Zoom in"), 15 15 KeyEvent.VK_PLUS, 0, true); 16 16 setEnabled(true); -
trunk/src/org/openstreetmap/josm/actions/ZoomOutAction.java
r770 r771 12 12 13 13 public ZoomOutAction() { 14 super(tr("Zoom Out"), null, tr("Zoom out"),14 super(tr("Zoom out"), null, tr("Zoom out"), 15 15 KeyEvent.VK_MINUS, 0, true); 16 16 setEnabled(true); -
trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java
r768 r771 54 54 */ 55 55 public DeleteAction(MapFrame mapFrame) { 56 super(tr("Delete Mode"),56 super(tr("Delete Mode"), 57 57 "delete", 58 58 tr("Delete nodes or ways."),
Note:
See TracChangeset
for help on using the changeset viewer.