UserConfirmation.st
changeset 14950 98ea43c237ae
parent 11365 5b8d580b8df5
child 14951 c0fd00efb042
equal deleted inserted replaced
14949:db71d89dd7f3 14950:98ea43c237ae
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    13 
    13 
    14 UserNotification subclass:#UserConfirmation
    14 Notification subclass:#UserConfirmation
    15 	instanceVariableNames:'canCancel defaultAnswerInDialog defaultAnswer'
    15 	instanceVariableNames:'canCancel defaultAnswerInDialog defaultAnswer'
    16 	classVariableNames:''
    16 	classVariableNames:''
    17 	poolDictionaries:''
    17 	poolDictionaries:''
    18 	category:'Kernel-Exceptions-Notifications'
    18 	category:'Kernel-Exceptions-Notifications'
    19 !
    19 !
   151 ! !
   151 ! !
   152 
   152 
   153 !UserConfirmation class methodsFor:'documentation'!
   153 !UserConfirmation class methodsFor:'documentation'!
   154 
   154 
   155 version
   155 version
   156     ^ '$Header: /cvs/stx/stx/libbasic/UserConfirmation.st,v 1.5 2008-11-22 10:53:08 cg Exp $'
   156     ^ '$Header: /cvs/stx/stx/libbasic/UserConfirmation.st,v 1.6 2013-03-25 14:00:19 cg Exp $'
   157 ! !
   157 ! !
       
   158