From c87bed332dbb9fe879521f2d003e538491254510 Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Wed, 3 Apr 2013 17:00:30 +0000 Subject: Make GTMUILocalizer's IBOutlet fields @protected. Private fields are turned into hidden symbols with the 64bit runtime, so classes that are not in the same dylib / framework as GTMUILocalizer cannot access these fields otherwise. This is for http://crbug.com/190508 DELTA=2 (1 added, 0 deleted, 1 changed) --- AppKit/GTMUILocalizer.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'AppKit/GTMUILocalizer.h') diff --git a/AppKit/GTMUILocalizer.h b/AppKit/GTMUILocalizer.h index 81f9dca..e856d91 100644 --- a/AppKit/GTMUILocalizer.h +++ b/AppKit/GTMUILocalizer.h @@ -71,10 +71,11 @@ // localizing all non-default toolbar items by hand. // @interface GTMUILocalizer : NSObject { - @private + @protected IBOutlet id owner_; IBOutlet id otherObjectToLocalize_; IBOutlet id yetAnotherObjectToLocalize_; + @private NSBundle *bundle_; } - (id)initWithBundle:(NSBundle *)bundle; -- cgit v1.2.3