Changeset 3765 in josm for trunk/src


Ignore:
Timestamp:
2011-01-02T01:54:29+01:00 (13 years ago)
Author:
stoecker
Message:

fix help

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  
    259259    @Override
    260260    public String helpTopic() {
    261         return ht("/Dialogs/ConflictListDialog");
     261        return ht("/Dialog/ConflictList");
    262262    }
    263263
     
    328328            putValue(SHORT_DESCRIPTION,  tr("Open a merge dialog of all selected items in the list above."));
    329329            putValue(SMALL_ICON, ImageProvider.get("dialogs", "conflict"));
    330             putValue("help", ht("/Dialogs/ConflictListDialog#ResolveAction"));
     330            putValue("help", ht("/Dialog/ConflictList#ResolveAction"));
    331331        }
    332332
     
    348348            putValue(SHORT_DESCRIPTION,  tr("Set the selected elements on the map to the selected items in the list above."));
    349349            putValue(SMALL_ICON, ImageProvider.get("dialogs", "select"));
    350             putValue("help", ht("/Dialogs/ConflictListDialog#SelectAction"));
     350            putValue("help", ht("/Dialog/ConflictList#SelectAction"));
    351351        }
    352352
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java

    r3501 r3765  
    170170
    171171        resolver.addPropertyChangeListener(this);
    172         HelpUtil.setHelpContext(this.getRootPane(), "Dialog/ConflictDialog");
     172        HelpUtil.setHelpContext(this.getRootPane(), ht("Dialog/Conflict"));
    173173
    174174        registerListeners();
     
    212212
    213213        public void actionPerformed(ActionEvent arg0) {
    214             HelpBrowser.setUrlForHelpTopic("/Dialog/ConflictDialog");
     214            HelpBrowser.setUrlForHelpTopic(ht("/Dialog/Conflict"));
    215215        }
    216216    }
Note: See TracChangeset for help on using the changeset viewer.