#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 16 Jan 2018 22:13:10 +0100
changeset 17885 dc02440d1c88
parent 17884 7157cd258b89
child 17886 61d939445ea8
#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.
Bookmark.st
--- a/Bookmark.st	Tue Jan 16 22:13:08 2018 +0100
+++ b/Bookmark.st	Tue Jan 16 22:13:10 2018 +0100
@@ -215,7 +215,7 @@
     "Created: / 21-06-2011 / 08:49:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-flyByHelpText
+helpText
     ^ nil
 !
 
@@ -454,7 +454,7 @@
     "Modified: / 18-10-2011 / 13:33:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-flyByHelpText
+helpText
     ^ 'Goto ',className
 ! !
 
@@ -543,7 +543,7 @@
 
 !Bookmark::File methodsFor:'accessing'!
 
-flyByHelpText
+helpText
     ^ 'Goto "', path , '"'
 !
 
@@ -745,7 +745,7 @@
     selector := selectorArg.
 !
 
-flyByHelpText
+helpText
     ^ className,' >> ',selector
 !
 
@@ -871,7 +871,7 @@
 
 !Bookmark::URL methodsFor:'accessing'!
 
-flyByHelpText
+helpText
     ^ 'Goto "', url asString , '"'
 !