Title: [171945] trunk/Tools
Revision
171945
Author
timothy_hor...@apple.com
Date
2014-08-01 13:01:15 -0700 (Fri, 01 Aug 2014)

Log Message

Build fix for 32-bit after r171926.

* MiniBrowser/mac/SettingsController.h:
* MiniBrowser/mac/SettingsController.m:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (171944 => 171945)


--- trunk/Tools/ChangeLog	2014-08-01 19:42:06 UTC (rev 171944)
+++ trunk/Tools/ChangeLog	2014-08-01 20:01:15 UTC (rev 171945)
@@ -1,3 +1,10 @@
+2014-08-01  Timothy Horton  <timothy_hor...@apple.com>
+
+        Build fix for 32-bit after r171926.
+
+        * MiniBrowser/mac/SettingsController.h:
+        * MiniBrowser/mac/SettingsController.m:
+
 2014-08-01  Tim Horton  <timothy_hor...@apple.com>
 
         Confusing build fix after r171926.

Modified: trunk/Tools/MiniBrowser/mac/SettingsController.h (171944 => 171945)


--- trunk/Tools/MiniBrowser/mac/SettingsController.h	2014-08-01 19:42:06 UTC (rev 171944)
+++ trunk/Tools/MiniBrowser/mac/SettingsController.h	2014-08-01 20:01:15 UTC (rev 171945)
@@ -25,7 +25,9 @@
 
 #import <Cocoa/Cocoa.h>
 
-@interface SettingsController : NSObject
+@interface SettingsController : NSObject {
+    NSMenu *_menu;
+}
 
 + (instancetype)shared;
 

Modified: trunk/Tools/MiniBrowser/mac/SettingsController.m (171944 => 171945)


--- trunk/Tools/MiniBrowser/mac/SettingsController.m	2014-08-01 19:42:06 UTC (rev 171944)
+++ trunk/Tools/MiniBrowser/mac/SettingsController.m	2014-08-01 20:01:15 UTC (rev 171945)
@@ -42,9 +42,7 @@
 // This default name intentionally overlaps with the key that WebKit2 checks when creating a view.
 static NSString * const UseRemoteLayerTreeDrawingAreaPreferenceKey = @"WebKit2UseRemoteLayerTreeDrawingArea";
 
-@implementation SettingsController {
-    NSMenu *_menu;
-}
+@implementation SettingsController
 
 @synthesize menu=_menu;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to