#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Fri, 06 Mar 2020 12:56:18 +0100
changeset 4458 508be27574c1
parent 4457 8c328436fba9
child 4459 d9dcc1802edc
#REFACTORING by stefan class: ActiveHelpView class changed: #for:onDevice: (send #label: instead of #logo:) obsolete method usage
ActiveHelpView.st
--- a/ActiveHelpView.st	Thu Feb 27 16:08:38 2020 +0100
+++ b/ActiveHelpView.st	Fri Mar 06 12:56:18 2020 +0100
@@ -102,8 +102,8 @@
     helpView := self onDevice:aDevice.
     someText isString ifFalse:[
         textView := Label onDevice:aDevice.
-        textView logo:someText. 
-        ^ (helpView withView:textView)
+        textView label:someText. 
+        ^ helpView withView:textView.
     ].
     
     ((someText startsWith:'<html>' caseSensitive:false)