# HG changeset patch # User Stefan Vogel # Date 1175982749 -7200 # Node ID 68b28da467d4705044d8a688f4ecf1cc8c0dbe98 # Parent 4e2202b073bc0f0a066478e7cbdb3cb2f6f5c08e changed #alienViewHasBeenDestroyed - user #errorPrint or #infoPrint instead of #print diff -r 4e2202b073bc -r 68b28da467d4 ExternalTopView.st --- a/ExternalTopView.st Fri Mar 30 23:40:13 2007 +0200 +++ b/ExternalTopView.st Sat Apr 07 23:52:29 2007 +0200 @@ -9,8 +9,6 @@ other person. No title to or ownership of the software is hereby transferred. " - - "{ Package: 'stx:libview2' }" TopView subclass:#ExternalTopView @@ -71,7 +69,7 @@ !ExternalTopView methodsFor:'private'! alienViewHasBeenDestroyed -'alienViewHasBeenDestroyed' printCR. + 'alienViewHasBeenDestroyed' infoPrintCR. self sensor notNil ifTrue:[ self sensor destroyedView:self ] ifFalse:[ @@ -311,5 +309,5 @@ !ExternalTopView class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview2/ExternalTopView.st,v 1.14 2006-08-21 10:18:11 cg Exp $' + ^ '$Header: /cvs/stx/stx/libview2/ExternalTopView.st,v 1.15 2007-04-07 21:52:29 stefan Exp $' ! !