# HG changeset patch # User Claus Gittinger # Date 1516137221 -3600 # Node ID 76350fb3380f12e2417c0b15d66e8934081397d0 # Parent d046305c27608578b25e1c4936c49056cc6f577d #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 d046305c2760 -r 76350fb3380f TextView.st --- a/TextView.st Tue Jan 16 22:13:17 2018 +0100 +++ b/TextView.st Tue Jan 16 22:13:41 2018 +0100 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " COPYRIGHT (c) 1989 by Claus Gittinger All Rights Reserved @@ -338,7 +340,7 @@ !TextView class methodsFor:'help specs'! -flyByHelpSpec +helpSpec "This resource specification was automatically generated by the UIHelpTool of ST/X." @@ -2613,7 +2615,7 @@ bindings at:#replacePreserveCaseBoolean put:replacePreserveCaseBooleanHolder. bindings at:#replaceTextHolder put:replaceTextHolder. - bindings at:#flyByHelpSpec put:self class flyByHelpSpec. + bindings at:#helpSpec put:self class helpSpec. updateReturnKeyBehavior := [ @@ -2652,7 +2654,7 @@ bldr := searchBox builder. bldr addBindings:bindings. - bldr aspectAt:#flyByHelpSpec put:(self class flyByHelpSpec). + bldr aspectAt:#helpSpec put:(self class helpSpec). searchBox allButOpenFrom:(self class searchDialogSpec). (bldr componentAt:#nextButton) cursor:(Cursor thumbsUp).