SimpleDialog.st
changeset 3970 d993b77cf073
parent 3867 9b2f1d48773a
child 4026 4bbb79ad0788
--- a/SimpleDialog.st	Sun Jul 23 12:18:04 2017 +0200
+++ b/SimpleDialog.st	Thu Aug 03 14:39:23 2017 +0200
@@ -512,7 +512,7 @@
 !
 
 postBuildWith:aBuilder
-    "this is sent after the dialogs widgets have been created
+    "this is sent after the dialog's widgets have been created
      (but before the dialog is opened).
      If a postBuildBlock was set, evaluate it here."
 
@@ -528,10 +528,11 @@
     super postBuildWith:aBuilder
 
     "Created: / 18-10-1997 / 05:17:12 / cg"
+    "Modified (comment): / 03-08-2017 / 14:39:04 / cg"
 !
 
 postOpenWith:aBuilder
-    "this is sent after the dialogs main window is opened.
+    "this is sent after the dialog's main window is opened.
      If a postOpenBlock was set, evaluate it here."
 
     postOpenBlock notNil ifTrue:[
@@ -545,10 +546,11 @@
     super postOpenWith:aBuilder
 
     "Created: / 18-10-1997 / 05:15:48 / cg"
+    "Modified (comment): / 03-08-2017 / 14:39:08 / cg"
 !
 
 preBuildWith:aBuilder
-    "this is sent before the dialogs widgets are created.
+    "this is sent before the dialog's widgets are created.
      If a preBuildBlock was set, evaluate it here."
 
     preBuildBlock notNil ifTrue:[
@@ -562,6 +564,7 @@
     super preBuildWith:aBuilder
 
     "Created: / 18-10-1997 / 15:02:27 / cg"
+    "Modified (comment): / 03-08-2017 / 14:39:11 / cg"
 !
 
 preOpen
@@ -577,7 +580,7 @@
 !
 
 preOpenWith:aBuilder
-    "this is sent after the dialogs main window is opened.
+    "this is sent after the dialog's main window is opened.
      If a postOpenBlock was set, evaluate it here."
 
     builder source ~= self ifTrue:[
@@ -588,6 +591,7 @@
     super preOpenWith:aBuilder
 
     "Created: / 05-03-2014 / 18:47:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 03-08-2017 / 14:39:15 / cg"
 ! !
 
 !SimpleDialog methodsFor:'queries'!