class: DisplayObject
authorClaus Gittinger <cg@exept.de>
Tue, 05 May 2015 13:14:19 +0200
changeset 3465 8d6d8462943c
parent 3464 85e229581fd1
child 3466 1cfb72655c36
class: DisplayObject comment/format in: #isOpaque
DisplayObject.st
--- a/DisplayObject.st	Tue May 05 13:14:10 2015 +0200
+++ b/DisplayObject.st	Tue May 05 13:14:19 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libview2' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#DisplayObject
 	instanceVariableNames:'frame'
 	classVariableNames:''
@@ -561,7 +565,7 @@
 
 isOpaque
     "return true, if the object fully covers its frame (i.e. is rectangular
-     and has no 'holes'. Since we dont know, return false here"
+     and has no 'holes'. Since we don't know, return false here"
 
     ^ false
 ! !
@@ -590,10 +594,10 @@
 !DisplayObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.39 2014-07-10 12:23:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.40 2015-05-05 11:14:19 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.39 2014-07-10 12:23:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.40 2015-05-05 11:14:19 cg Exp $'
 ! !