[Seaside] How generate ID

Tom Phoenix rootbeer at redcat.com
Sat Dec 29 21:40:51 UTC 2007


On Dec 29, 2007 12:53 PM, Tom Phoenix <rootbeer at redcat.com> wrote:

>     MyClass class>>initialize
>         super initialize.
>         LastID := ifNil: [ LastID := 0 ] .

Oops -- Omit that first assignment operator.

        LastID ifNil: [ LastID := 0 ].

--Tom Phoenix


More information about the seaside mailing list