aboutsummaryrefslogtreecommitdiff
path: root/AppKit
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2013-04-03 17:00:30 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2013-04-03 17:00:30 +0000
commitc87bed332dbb9fe879521f2d003e538491254510 (patch)
tree97292276578b131641550c265fd651e1f74cb5b6 /AppKit
parent44043f0b1646f6a439c3dd22e96a2d9f5577ed78 (diff)
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)
Diffstat (limited to 'AppKit')
-rw-r--r--AppKit/GTMUILocalizer.h3
1 files changed, 2 insertions, 1 deletions
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;