class: DisplayRootView
authorClaus Gittinger <cg@exept.de>
Mon, 26 Jan 2015 00:53:57 +0100
changeset 6753 57fff98ba620
parent 6752 a407ac7e4d0e
child 6755 cee1206f74db
class: DisplayRootView added: #isComponentOf:
DisplayRootView.st
--- a/DisplayRootView.st	Sun Jan 25 01:19:22 2015 +0100
+++ b/DisplayRootView.st	Mon Jan 26 00:53:57 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libview' }"
 
+"{ NameSpace: Smalltalk }"
+
 DisplaySurface subclass:#DisplayRootView
 	instanceVariableNames:''
 	classVariableNames:''
@@ -243,6 +245,10 @@
     "Created: / 13-10-2006 / 15:55:54 / cg"
 !
 
+isComponentOf: aView
+    ^ false
+!
+
 isRootView
     "return true, since yes, I am a rootview"
 
@@ -278,6 +284,6 @@
 !DisplayRootView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/DisplayRootView.st,v 1.43 2014-09-23 11:36:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/DisplayRootView.st,v 1.44 2015-01-25 23:53:57 cg Exp $'
 ! !