mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
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:
parent
7f4e569c47
commit
6c39610429
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -51,7 +51,7 @@ typedef enum _NSMatrixMode {
|
|||
|
||||
@interface NSMatrix : NSControl <NSCoding>
|
||||
{
|
||||
id **_cells;
|
||||
__strong id **_cells;
|
||||
BOOL **_selectedCells;
|
||||
int _maxRows;
|
||||
int _maxCols;
|
||||
|
|
Loading…
Reference in a new issue