mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 11:40:48 +00:00
* Source/GSXibLoader.m
* Source/GSXibLoading.m: Merge from trunk of new XIB fixes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@35483 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
37d5e64967
commit
7b1a15cd96
3 changed files with 120 additions and 3 deletions
|
@ -22,6 +22,12 @@
|
|||
@interface IBAccessibilityAttribute : NSObject <NSCoding>
|
||||
@end
|
||||
|
||||
@interface IBNSLayoutConstraint : NSObject <NSCoding>
|
||||
@end
|
||||
|
||||
@interface IBLayoutConstant : NSObject <NSCoding>
|
||||
@end
|
||||
|
||||
@implementation IBUserDefinedRuntimeAttributesPlaceholder
|
||||
|
||||
- (void) encodeWithCoder: (NSCoder *)coder
|
||||
|
@ -92,3 +98,27 @@
|
|||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation IBNSLayoutConstraint
|
||||
- (void) encodeWithCoder: (NSCoder *)coder
|
||||
{
|
||||
// Do nothing...
|
||||
}
|
||||
|
||||
- (id) initWithCoder: (NSCoder *)coder
|
||||
{
|
||||
return self;
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation IBLayoutConstant
|
||||
- (void) encodeWithCoder: (NSCoder *)coder
|
||||
{
|
||||
// Do nothing...
|
||||
}
|
||||
|
||||
- (id) initWithCoder: (NSCoder *)coder
|
||||
{
|
||||
return self;
|
||||
}
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue