Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.785.mcz==================== Summary ====================
Name: System-mt.785
Author: mt
Time: 13 January 2016, 8:56:07.72568 am
UUID: 5ebfaea6-5fd2-476b-85ec-8ea4e365cdce
Ancestors: System-ul.784
Use #ballonColor: instead of #setBalloonColorTo:, which is now deprecated.
=============== Diff against System-ul.784 ===============
Item was changed:
----- Method: ColorTheme>>apply (in category 'applying') -----
apply
"apply the receiver as the current theme"
+ BalloonMorph balloonColor: self balloonColor.
- BalloonMorph setBalloonColorTo: self balloonColor.
Preferences setParameter: #defaultWorldColor to: self defaultWorldColor.
Preferences insertionPointColor: self insertionPointColor.
Preferences keyboardFocusColor: self keyboardFocusColor.
Preferences textHighlightColor: self textHighlightColor.
Preferences setParameter: #menuTitleColor to: self menuTitleColor.
Preferences setParameter: #menuTitleBorderColor to: self menuTitleBorderColor.
Preferences setParameter: #menuTitleBorderWidth to: self menuTitleBorderWidth.
Preferences setParameter: #menuColor to: self menuColor.
Preferences setParameter: #menuBorderColor to: self menuBorderColor.
Preferences setParameter: #menuLineColor to: self menuLineColor.
Preferences setParameter: #menuBorderWidth to: self menuBorderWidth.
Preferences setParameter: #menuSelectionColor to: self menuSelectionColor.
SystemProgressMorph reset.
self class current: self.
!