Layout.st
changeset 126 25df58661f32
parent 114 e577a2f332d0
child 216 a5f97668e99a
--- a/Layout.st	Thu Nov 23 11:43:41 1995 +0100
+++ b/Layout.st	Thu Nov 23 18:42:34 1995 +0100
@@ -52,10 +52,6 @@
     the corresponding ST-80 class. If you encounter any incompatibilities,
     please forward a note to the ST/X team.
 "
-!
-
-version
-    ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.7 1995-11-11 16:04:37 cg Exp $'
 ! !
 
 !Layout class methodsFor:'instance creation'!
@@ -64,18 +60,24 @@
     ^ self basicNew initialize
 ! !
 
-!Layout methodsFor:'queries'!
-
-rectangleRelativeTo:superRectangle preferred:prefRect
-    ^ self subclassResponsibility
-!
-
-isLayout
-    ^ true
-! !
-
 !Layout methodsFor:'initialization'!
 
 initialize
     ^ self subclassResponsibility
 ! !
+
+!Layout methodsFor:'queries'!
+
+isLayout
+    ^ true
+!
+
+rectangleRelativeTo:superRectangle preferred:prefRect
+    ^ self subclassResponsibility
+! !
+
+!Layout class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.8 1995-11-23 17:42:29 cg Exp $'
+! !