'From Squeak3.1alpha of 5 February 2001 [latest update: #3649] on 19 February 2001 at 7:56:14 am'! "Change Set: projPrefFix Date: 19 February 2001 Author: Bob Arning fix a walkback in project preferences"! !Project methodsFor: 'project parameters' stamp: 'RAA 2/19/2001 07:55'! initializeProjectPreferences "Initialize the project's preferences from currently-prevailing preferences that are currently being held in projects in this system" projectPreferenceFlagDictionary _ Project current projectPreferenceFlagDictionary deepCopy. Preferences flagsHeldByProjects associationsDo: "in case we missed some" [:assoc | (projectPreferenceFlagDictionary includesKey: assoc key) ifFalse: [projectPreferenceFlagDictionary add: assoc key -> assoc value]]! !