Ignore:
Timestamp:
2006-10-08T17:29:58+02:00 (18 years ago)
Author:
imi
Message:
  • added online help system
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/dialogs/HistoryDialog.java

    r143 r155  
    3838/**
    3939 * History dialog works like follows:
    40  * 
     40 *
    4141 * There is a history cache hold in the back for primitives of the last refresh.
    4242 * When the user refreshes, this cache is cleared and all currently selected items
    4343 * are reloaded.
    44  * If the user has selected at least one primitive not in the cache, the list 
     44 * If the user has selected at least one primitive not in the cache, the list
    4545 * is not displayed. Elsewhere, the list of all changes of all currently selected
    4646 * objects are displayed.
    47  * 
     47 *
    4848 * @author imi
    4949 */
     
    130130                });
    131131                reloadButton.setToolTipText(tr("Reload all currently selected objects and refresh the list."));
     132                reloadButton.putClientProperty("help", "Dialog/History/Reload");
    132133                revertButton.addActionListener(new ActionListener(){
    133134                        public void actionPerformed(ActionEvent e) {
     
    136137                });
    137138                revertButton.setToolTipText(tr("Revert the state of all currently selected objects to the version selected in the history list."));
     139                revertButton.putClientProperty("help", "Dialog/History/Revert");
    138140        }
    139141
Note: See TracChangeset for help on using the changeset viewer.