UIPainterView.st
changeset 708 b5f3169a0ba7
parent 698 5bf234e0e451
child 712 bf8aa59e82b6
--- a/UIPainterView.st	Fri Mar 06 13:22:24 1998 +0100
+++ b/UIPainterView.st	Fri Mar 06 15:33:06 1998 +0100
@@ -782,8 +782,8 @@
                 , (self 
                     generateHookMethodFor:'postBuildWith:aBuilder'
                     comment:'the widgets have been built, but before the view is opened'
-                    note:nil
-                    defaultCode:nil
+                    note:'or after the super send'
+                    defaultCode:'    super postBuildWith:aBuilder'
                     inClass:targetClass)
     ].
     (targetClass implements:#postOpenWith:) ifFalse:[
@@ -791,8 +791,8 @@
                 , (self 
                     generateHookMethodFor:'postOpenWith:aBuilder'
                     comment:'the topView has been opened, but before events are dispatched for it'
-                    note:nil
-                    defaultCode:nil
+                    note:'or after the super send'
+                    defaultCode:'    super postOpenWith:aBuilder'
                     inClass:targetClass)
     ].
     (targetClass implements:#closeRequest) ifFalse:[
@@ -801,7 +801,7 @@
                     generateHookMethodFor:'closeRequest'
                     comment:'the topView has been asked to close'
                     note:'return without the ''super closeRequest'' to stay open'
-                    defaultCode:'^ super closeRequest'
+                    defaultCode:'    ^super closeRequest'
                     inClass:targetClass)
     ].
     ^ code