aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/system_preferences_mac.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gm/system_preferences_mac.mm')
-rw-r--r--gm/system_preferences_mac.mm13
1 files changed, 9 insertions, 4 deletions
diff --git a/gm/system_preferences_mac.mm b/gm/system_preferences_mac.mm
index 2c772a156c..1c43b749b1 100644
--- a/gm/system_preferences_mac.mm
+++ b/gm/system_preferences_mac.mm
@@ -7,16 +7,21 @@
#import <Cocoa/Cocoa.h>
+// FIXME: should be in a header
+void setSystemPreferences();
+
void setSystemPreferences() {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// Set LCD font smoothing level for this application (does not affect other
// applications). Based on resetDefaultsToConsistentValues() in
// http://trac.webkit.org/browser/trunk/Tools/DumpRenderTree/mac/DumpRenderTree.mm
- static const int NoFontSmoothing = 0;
- static const int LightFontSmoothing = 1;
- static const int MediumFontSmoothing = 2;
- static const int StrongFontSmoothing = 3;
+ enum {
+ NoFontSmoothing = 0,
+ LightFontSmoothing = 1,
+ MediumFontSmoothing = 2,
+ StrongFontSmoothing = 3,
+ };
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setInteger:MediumFontSmoothing forKey:@"AppleFontSmoothing"];