'From Squeak3.1alpha of 5 February 2001 [latest update: #3527] on 6 February 2001 at 4:18:32 pm'! "Change Set: prefHelpFix-sw Date: 6 February 2001 Author: Scott Wallace Fixes bug that set up preferences help wrong after addition of a new preference"! !Preferences class methodsFor: 'initialization' stamp: 'sw 2/6/2001 16:16'! initializeHelpMessages "Initialize the preferences help messages from the initialization information found" "Preferences initializeHelpMessages" HelpDictionary _ Dictionary new. self allPreferenceInitializationSpecs do: [:quad | quad size >= 4 ifTrue: [HelpDictionary at: quad first put: quad fourth]]! !