PanelView.st
changeset 2527 3e7d9eaa347b
parent 2305 f2850e54b0ab
child 2753 8e1f4b3fc40a
--- a/PanelView.st	Wed Apr 10 11:10:49 2002 +0200
+++ b/PanelView.st	Wed Apr 10 12:50:18 2002 +0200
@@ -532,13 +532,11 @@
 !
 
 makeMyselfDependentOnSubviews
-    (subViews := self subViews) notNil ifTrue:[
+    subViews notNil ifTrue:[
         subViews do:[:aView |
             aView addDependent:self
         ]
     ]
-
-
 !
 
 subViewsToConsider
@@ -566,5 +564,5 @@
 !PanelView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.35 2000-11-08 09:16:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.36 2002-04-10 10:50:18 cg Exp $'
 ! !