diff -r e07277070839 -r cd056a68d67a SimpleDialog.st --- a/SimpleDialog.st Fri Jun 19 02:44:59 1998 +0200 +++ b/SimpleDialog.st Fri Jun 19 03:37:17 1998 +0200 @@ -392,14 +392,14 @@ accept := (ValueHolder with:false). close := (ValueHolder with:false). cancel := (ValueHolder with:false). - builder := self builderClass new. + self createBuilder. builder aspectAt:#accept put:accept. builder aspectAt:#close put:close. builder aspectAt:#cancel put:cancel. escapeIsCancel := true. closeAllowedChannel := true - "Modified: / 19.6.1998 / 02:22:41 / cg" + "Modified: / 19.6.1998 / 03:35:48 / cg" ! initializeBuilderFor:aView @@ -594,5 +594,5 @@ !SimpleDialog class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview2/SimpleDialog.st,v 1.21 1998-06-19 00:23:14 cg Exp $' + ^ '$Header: /cvs/stx/stx/libview2/SimpleDialog.st,v 1.22 1998-06-19 01:36:40 cg Exp $' ! !