ClassDescription.st
changeset 3603 ba736c503cb9
parent 3596 d19a2f605da3
child 3606 397b95da25e9
equal deleted inserted replaced
3602:dd53d372c250 3603:ba736c503cb9
   119      (for example) during fileIn or when changes are applied, it is set to false
   119      (for example) during fileIn or when changes are applied, it is set to false
   120      to avoid putting too much junk into the changes-file."
   120      to avoid putting too much junk into the changes-file."
   121      
   121      
   122     UpdatingChanges := true.
   122     UpdatingChanges := true.
   123     LockChangesFile := false.
   123     LockChangesFile := false.
   124     CatchMethodRedefinitions := true.
   124     CatchMethodRedefinitions := CatchClassRedefinitions := true.
   125     TryLocalSourceFirst := false.
   125     TryLocalSourceFirst := false.
   126 
   126 
   127     FileOutErrorSignal isNil ifTrue:[
   127     FileOutErrorSignal isNil ifTrue:[
   128         FileOutErrorSignal := ErrorSignal newSignalMayProceed:false.
   128         FileOutErrorSignal := ErrorSignal newSignalMayProceed:false.
   129         FileOutErrorSignal nameClass:self message:#fileOutErrorSignal.
   129         FileOutErrorSignal nameClass:self message:#fileOutErrorSignal.
  2994 ! !
  2994 ! !
  2995 
  2995 
  2996 !ClassDescription class methodsFor:'documentation'!
  2996 !ClassDescription class methodsFor:'documentation'!
  2997 
  2997 
  2998 version
  2998 version
  2999     ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.70 1998-06-17 09:42:17 cg Exp $'
  2999     ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.71 1998-06-17 21:47:42 cg Exp $'
  3000 ! !
  3000 ! !
  3001 ClassDescription initialize!
  3001 ClassDescription initialize!