Fix AppKit headers to allow inclusion in ARC mode. Since ARC requires the non-fragile ABI, a better solution would be to simply not expose any of these ivars with the non-fragile ABI.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33414 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2011-06-29 15:39:45 +00:00
parent 7f4e569c47
commit 6c39610429
2 changed files with 3 additions and 3 deletions

View file

@ -244,8 +244,8 @@ enum
struct
{
BOOL repeat;
NSString *char_keys;
NSString *unmodified_keys;
__unsafe_unretained NSString *char_keys;
__unsafe_unretained NSString *unmodified_keys;
unsigned short key_code;
} key;
struct

View file

@ -51,7 +51,7 @@ typedef enum _NSMatrixMode {
@interface NSMatrix : NSControl <NSCoding>
{
id **_cells;
__strong id **_cells;
BOOL **_selectedCells;
int _maxRows;
int _maxCols;