mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 00:50:38 +00:00
* Source/GSXibLoader.m: Add _preProcessXib: method to perform
custom class substitutions when loading a XIB file. * Source/GSXibLoading.m: Add stub classes for IBNSLayoutConstraint and IBNSLayoutConstant so that these can now be loaded. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@35482 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
09915b2bb3
commit
58c33f3dce
3 changed files with 122 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