- Timestamp:
- 2014-10-28T21:01:09+01:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AddImageryLayerAction.java
r7509 r7665 2 2 package org.openstreetmap.josm.actions; 3 3 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 4 5 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 … … 47 48 super(info.getMenuName(), /* ICON */"imagery_menu", tr("Add imagery layer {0}",info.getName()), null, false, false); 48 49 putValue("toolbar", "imagery_" + info.getToolbarName()); 50 putValue("help", ht("/Preferences/Imagery")); 49 51 this.info = info; 50 52 installAdapters(); -
trunk/src/org/openstreetmap/josm/gui/mappaint/MapPaintMenu.java
r7602 r7665 2 2 package org.openstreetmap.josm.gui.mappaint; 3 3 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 4 5 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 … … 38 39 this.style = style; 39 40 updateButton(); 41 putValue("help", ht("/Dialog/MapPaint")); 40 42 } 41 43 … … 85 87 setIcon(ImageProvider.get("dialogs", "mapstyle")); 86 88 MapPaintStyles.addMapPaintSylesUpdateListener(this); 89 putClientProperty("help", ht("/Dialog/MapPaint")); 87 90 } 88 91
Note:
See TracChangeset
for help on using the changeset viewer.