there was a critical copy bug in some SW1 versions.
Adrien suggested
this fix:
====================
!SWPropertyManager methodsFor: 'copying' stamp: 'al 12/8/2004 15:03'!
postCopy
| dictionary |
super postCopy.
dictionary := Dictionary new.
properties keysAndValuesDo: [ :key :value |
dictionary at: key copy put: value copy ].
properties := dictionary.! !
====================
SW1 has been working fine for me using this on 3.7 and Linux, image-
based storage.
- Bert -
Thank man, that was it, bet that was my prob with 3.8 too, guess I'll
find out tomorrow.