# HG changeset patch # User Claus Gittinger # Date 1174987225 -7200 # Node ID 0bae426183062bb185f9ddc35317abb4c1a10c6d # Parent bd71da1fd58a0bf7aa517181c94bbb8d670b345f no need to redefine decodeAsLiteralArray diff -r bd71da1fd58a -r 0bae42618306 Layout.st --- a/Layout.st Tue Mar 27 11:20:01 2007 +0200 +++ b/Layout.st Tue Mar 27 11:20:25 2007 +0200 @@ -9,7 +9,6 @@ other person. No title to or ownership of the software is hereby transferred. " - "{ Package: 'stx:libview2' }" Object subclass:#Layout @@ -64,16 +63,6 @@ !Layout class methodsFor:'instance creation'! -decodeFromLiteralArray:anArray - "create & return a new instance from information encoded in anArray. - Redefined since no initialization is needed - (the values are all set from the specArray." - - ^ self basicNew fromLiteralArrayEncoding:anArray. - - "Modified: / 28.1.1998 / 17:42:25 / cg" -! - new "return a new initialized instance" @@ -147,5 +136,5 @@ !Layout class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.17 2006-07-03 16:11:48 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.18 2007-03-27 09:20:25 cg Exp $' ! !