Changeset 3765 in josm for trunk/src/org
- Timestamp:
- 2011-01-02T01:54:29+01:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/dialogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java
r3754 r3765 259 259 @Override 260 260 public String helpTopic() { 261 return ht("/Dialog s/ConflictListDialog");261 return ht("/Dialog/ConflictList"); 262 262 } 263 263 … … 328 328 putValue(SHORT_DESCRIPTION, tr("Open a merge dialog of all selected items in the list above.")); 329 329 putValue(SMALL_ICON, ImageProvider.get("dialogs", "conflict")); 330 putValue("help", ht("/Dialog s/ConflictListDialog#ResolveAction"));330 putValue("help", ht("/Dialog/ConflictList#ResolveAction")); 331 331 } 332 332 … … 348 348 putValue(SHORT_DESCRIPTION, tr("Set the selected elements on the map to the selected items in the list above.")); 349 349 putValue(SMALL_ICON, ImageProvider.get("dialogs", "select")); 350 putValue("help", ht("/Dialog s/ConflictListDialog#SelectAction"));350 putValue("help", ht("/Dialog/ConflictList#SelectAction")); 351 351 } 352 352 -
trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java
r3501 r3765 170 170 171 171 resolver.addPropertyChangeListener(this); 172 HelpUtil.setHelpContext(this.getRootPane(), "Dialog/ConflictDialog");172 HelpUtil.setHelpContext(this.getRootPane(), ht("Dialog/Conflict")); 173 173 174 174 registerListeners(); … … 212 212 213 213 public void actionPerformed(ActionEvent arg0) { 214 HelpBrowser.setUrlForHelpTopic( "/Dialog/ConflictDialog");214 HelpBrowser.setUrlForHelpTopic(ht("/Dialog/Conflict")); 215 215 } 216 216 }
Note:
See TracChangeset
for help on using the changeset viewer.