# HG changeset patch # User Stefan Vogel # Date 1369663922 -7200 # Node ID 7c7d4ed8296d081704d1eae234707df16a0c7bc6 # Parent 4cb1f1712ea2e358ee7f30156bfdbfee89be711f class: Notification changed: #defaultAction no direct access to instance variable 'signal' diff -r 4cb1f1712ea2 -r 7c7d4ed8296d Notification.st --- a/Notification.st Mon May 27 15:23:58 2013 +0200 +++ b/Notification.st Mon May 27 16:12:02 2013 +0200 @@ -304,7 +304,7 @@ "try per signal handler. I may have been created from a QuerySignal" - (handlerBlock := signal handlerBlock) notNil ifTrue:[ + (handlerBlock := self creator handlerBlock) notNil ifTrue:[ "... and call it" ^ handlerBlock value:self. ]. @@ -375,11 +375,11 @@ !Notification class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.29 2013-04-19 08:41:19 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.30 2013-05-27 14:12:02 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.29 2013-04-19 08:41:19 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.30 2013-05-27 14:12:02 stefan Exp $' ! !