- Timestamp:
- 2013-12-27T13:25:08+01:00 (11 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r6501 r6544 78 78 import org.openstreetmap.josm.actions.SaveAsAction; 79 79 import org.openstreetmap.josm.actions.SelectAllAction; 80 import org.openstreetmap.josm.actions.SelectNonBranchingWaySequencesAction; 80 81 import org.openstreetmap.josm.actions.SessionLoadAction; 81 82 import org.openstreetmap.josm.actions.SessionSaveAsAction; … … 260 261 /** Selection -> Unselect All */ 261 262 public final UnselectAllAction unselectAll = new UnselectAllAction(); 263 /** Selection -> Non-branching way sequences */ 264 public final SelectNonBranchingWaySequencesAction nonBranchingWaySequences = new SelectNonBranchingWaySequencesAction(); 262 265 263 266 /* Audio menu */ … … 704 707 add(selectionMenu, selectAll); 705 708 add(selectionMenu, unselectAll); 709 add(selectionMenu, nonBranchingWaySequences); 706 710 707 711 add(toolsMenu, splitWay); -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r6524 r6544 116 116 new DeprecatedPlugin("epsg31287", tr("replaced by new {0} plugin", "proj4j")), 117 117 new DeprecatedPlugin("licensechange", tr("no longer required")), 118 new DeprecatedPlugin("restart", IN_CORE) 118 new DeprecatedPlugin("restart", IN_CORE), 119 new DeprecatedPlugin("wayselector", IN_CORE), 119 120 }); 120 121 }
Note:
See TracChangeset
for help on using the changeset viewer.