Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.397.mcz==================== Summary ====================
Name: System-ul.397
Author: ul
Time: 25 November 2010, 11:45:13.676 pm
UUID: 84c594bb-44d7-1a4e-8c26-c09078e712d6
Ancestors: System-ul.396
- since #setBalloonHelpFontTo: does the same as the newly introduced #setBalloonFontTo:, the new method is now deleted
=============== Diff against System-ul.396 ===============
Item was changed:
----- Method: Preferences class>>restoreDefaultFonts (in category 'fonts') -----
restoreDefaultFonts
"Since this is called from menus, we can take the opportunity to prompt for missing font styles."
"
Preferences restoreDefaultFonts
"
self setDefaultFonts: #(
(setSystemFontTo: 'Bitmap DejaVu Sans' 9)
(setListFontTo: 'Bitmap DejaVu Sans' 9)
(setFlapsFontTo: Accushi 12)
(setEToysFontTo: BitstreamVeraSansBold 9)
(setPaintBoxButtonFontTo: BitstreamVeraSansBold 9)
(setMenuFontTo: 'Bitmap DejaVu Sans' 9)
(setWindowTitleFontTo: 'Bitmap DejaVu Sans Bold' 9)
+ (setBalloonHelpFontTo: 'Bitmap DejaVu Sans' 7)
- (setBalloonHelpFontTo: Accujen 9)
(setCodeFontTo: 'Bitmap DejaVu Sans' 9)
(setButtonFontTo: 'Bitmap DejaVu Sans' 7)
- (setBalloonFontTo: 'Bitmap DejaVu Sans' 7)
)!
Item was removed:
- ----- Method: Preferences class>>setBalloonFontTo: (in category 'fonts') -----
- setBalloonFontTo: aFont
-
- Smalltalk at: #BalloonMorph ifPresent: [ :balloonMorph |
- balloonMorph setBalloonFontTo: aFont ]!