Revision: 608
Author: gtm.daemon
Date: Wed Apr 3 10:00:30 2013
Log: 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)
http://code.google.com/p/google-toolbox-for-mac/source/detail?r=608
Modified:
/trunk/AppKit/GTMUILocalizer.h
=======================================
--- /trunk/AppKit/GTMUILocalizer.h Thu Jan 21 09:00:21 2010
+++ /trunk/AppKit/GTMUILocalizer.h Wed Apr 3 10:00:30 2013
@@ -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;