PanelView.st
changeset 6076 00cfb3845256
parent 5951 6678c0b6d0cb
child 6165 ff8b7a83327f
--- a/PanelView.st	Wed Feb 08 00:56:16 2017 +0100
+++ b/PanelView.st	Wed Feb 08 00:56:17 2017 +0100
@@ -451,14 +451,18 @@
 !PanelView methodsFor:'initialization'!
 
 initialize
+    <modifier: #super> "must be called if redefined"
+
     super initialize.
 
     hLayout := vLayout := #center.  "/ notice, this is ignored in this class
-				    "/ used by subclasses only
+                                    "/ used by subclasses only
     verticalSpace := ViewSpacing.
     horizontalSpace := ViewSpacing.
     mustRearrange := elementsChangeSize := false.
     ignoreInvisibleComponents := true.
+
+    "Modified: / 08-02-2017 / 00:35:19 / cg"
 !
 
 mapped