#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 16 Jan 2018 22:13:38 +0100
changeset 5676 4551b2b9d224
parent 5675 5c69a959093e
child 5677 6b247ffd5944
#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.
AssistantApplication.st
--- a/AssistantApplication.st	Tue Jan 16 22:13:35 2018 +0100
+++ b/AssistantApplication.st	Tue Jan 16 22:13:38 2018 +0100
@@ -42,10 +42,10 @@
 
 !AssistantApplication class methodsFor:'help'!
 
-flyByHelpSpec
+helpSpec
     <resource: #help>
 
-    ^ super flyByHelpSpec addPairsFrom:#(
+    ^ super helpSpec addPairsFrom:#(
 
 #backButton
 'Navigate to the previous page %(previousPageInfo)'
@@ -657,12 +657,12 @@
 
 !AssistantApplication methodsFor:'help'!
 
-flyByHelpTextForKey:aKey
+helpTextForKey:aKey
     <resource: #help>
 
     |text bindings nextSpec prevSpec|
 
-    text := super flyByHelpTextForKey:aKey.
+    text := super helpTextForKey:aKey.
 
     nextSpec := self nextEnabledPageSpec.
     prevSpec := self previousEnabledPageSpec.