diff -r 09806667c605 -r a11a12546f23 UserConfirmation.st --- a/UserConfirmation.st Mon Mar 25 23:04:02 2013 +0000 +++ b/UserConfirmation.st Wed Mar 27 12:24:15 2013 +0000 @@ -11,7 +11,7 @@ " "{ Package: 'stx:libbasic' }" -UserNotification subclass:#UserConfirmation +Notification subclass:#UserConfirmation instanceVariableNames:'canCancel defaultAnswerInDialog defaultAnswer' classVariableNames:'' poolDictionaries:'' @@ -50,7 +50,7 @@ keeping the flag in a global (very bad) keeping it in a class var (almost as bad) - Notice: thats one of the nice consequences of proceedable exceptions. + Notice: that's one of the nice consequences of proceedable exceptions. [authors:] Stefan Vogel @@ -61,6 +61,7 @@ " ! ! + !UserConfirmation methodsFor:'accessing'! aspect @@ -104,6 +105,7 @@ defaultAnswer := aBooleanOrNil ! ! + !UserConfirmation methodsFor:'default actions'! defaultAction @@ -150,15 +152,18 @@ " ! ! + !UserConfirmation class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/UserConfirmation.st,v 1.5 2008/11/22 10:53:08 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/UserConfirmation.st,v 1.7 2013-03-25 14:00:49 cg Exp $' +! + +version_CVS + ^ '$Header: /cvs/stx/stx/libbasic/UserConfirmation.st,v 1.7 2013-03-25 14:00:49 cg Exp $' ! version_SVN ^ '$Id: UserConfirmation.st 10761 2012-01-19 11:46:00Z vranyj1 $' ! ! - -