# HG changeset patch # User Claus Gittinger # Date 1516137275 -3600 # Node ID fda84ae10fee9ed2483d6aafdd53cbd155a49bb2 # Parent b139ae53809849f284a060f70f8b566802b04116 #OTHER by cg big refactoring: replaced all flyByHelpXXX sends and implementations by helpXXX. This should remove the confusion on where the tooltips should be stored and which methods need to be redefined. ATTENTION: May introduce temporary inconveniences until all other applications (in exept:xxx packages) are changed. diff -r b139ae538098 -r fda84ae10fee UIHelpTool.st --- a/UIHelpTool.st Tue Jan 16 22:14:28 2018 +0100 +++ b/UIHelpTool.st Tue Jan 16 22:14:35 2018 +0100 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " COPYRIGHT (c) 1995 by eXept Software AG All Rights Reserved @@ -108,7 +110,7 @@ !UIHelpTool class methodsFor:'help specs'! -flyByHelpSpec +helpSpec "This resource specification was automatically generated by the UIHelpTool of ST/X." @@ -121,7 +123,7 @@ - ^ super flyByHelpSpec addPairsFrom:#( + ^ super helpSpec addPairsFrom:#( #addHelpTextKey 'Adds the key to the help spec.' @@ -521,7 +523,7 @@ alternativeSpecSelectors "returns a set of alternative spec method selectors of the resource spec" - ^ #( helpPairs flyByHelpSpec tooltipSpec ) + ^ #( helpPairs helpSpec "flyByHelpSpec" tooltipSpec ) "Modified: / 03-02-2017 / 13:05:02 / cg" !