Changeset 6822


Ignore:
Timestamp:
2004-02-18T10:16:24+13:00 (20 years ago)
Author:
mdewsnip
Message:

Changed plugin and classifiers tooltips to use the new registerTooltipText function.

Location:
trunk/gli/src/org/greenstone/gatherer/cdm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/ClassifierManager.java

    r6389 r6822  
    800800                else {
    801801                    Classifier current_classifier = (Classifier) current_selection;
    802                     Dictionary.registerTooltip(classifier, Utility.formatHTMLWidth(current_classifier.getDescription(), 40), false);
     802                    Dictionary.registerTooltipText(classifier, Utility.formatHTMLWidth(current_classifier.getDescription(), 40));
    803803                    current_classifier = null;
    804804                }
  • trunk/gli/src/org/greenstone/gatherer/cdm/PlugInManager.java

    r6744 r6822  
    10571057                else {
    10581058                    PlugIn current_plugin = (PlugIn) current_selection;
    1059                     Dictionary.registerTooltip(plugin, Utility.formatHTMLWidth(current_plugin.getDescription(), 40), false);
     1059                    Dictionary.registerTooltipText(plugin, Utility.formatHTMLWidth(current_plugin.getDescription(), 40));
    10601060                    current_plugin = null;
    10611061                }
Note: See TracChangeset for help on using the changeset viewer.