mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 08:41:23 +00:00
* Headers/Additions/GNUstepGUI/GSXibLoading.h,
* Source/GSXibLoader.m: Fix object ID parsing in XIB loading due to Apple moving to string ID represenatation. Patch by Marcian Lytwyn <gna@advcsi.com>. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@38236 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4d8a91d0e0
commit
00928ee6ea
3 changed files with 58 additions and 13 deletions
|
@ -122,14 +122,14 @@
|
|||
|
||||
@interface IBObjectRecord: NSObject
|
||||
{
|
||||
int objectID;
|
||||
id objectID;
|
||||
id object;
|
||||
id children;
|
||||
id parent;
|
||||
}
|
||||
- (id) object;
|
||||
- (id) parent;
|
||||
- (NSInteger) objectID;
|
||||
- (id) objectID;
|
||||
@end
|
||||
|
||||
@interface IBMutableOrderedSet: NSObject
|
||||
|
@ -137,7 +137,7 @@
|
|||
NSArray *orderedObjects;
|
||||
}
|
||||
- (NSArray *)orderedObjects;
|
||||
- (id) objectWithObjectID: (NSInteger)objID;
|
||||
- (id) objectWithObjectID: (id)objID;
|
||||
@end
|
||||
|
||||
@interface IBObjectContainer: NSObject <NSCoding>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue