mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
Small clean up.
This commit is contained in:
parent
e868f47488
commit
05b35bd8a6
3 changed files with 5 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
/** <title>GSXibParserDelegate.h</title>
|
||||
/** <title>GSXib5KeyedUnarchiver.h</title>
|
||||
|
||||
<abstract>The XIB 5 keyed unarchiver</abstract>
|
||||
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
Author: Marcian Lytwyn <gnustep@advcsi.com>
|
||||
Date: 12/28/16
|
||||
Modifications: Fred Kiefer <fredkiefer@gmx.de>
|
||||
Date: December 2019
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
|
@ -570,11 +572,6 @@ static NSArray *XmlBoolDefaultYes = nil;
|
|||
}
|
||||
}
|
||||
|
||||
+ (NSInteger) coderVersion
|
||||
{
|
||||
return 5;
|
||||
}
|
||||
|
||||
+ (NSString*) classNameForXibTag: (NSString*)xibTag
|
||||
{
|
||||
NSString *className = [XmlTagToObjectClassMap objectForKey: xibTag];
|
||||
|
|
|
@ -346,12 +346,10 @@
|
|||
{
|
||||
object_setIvar(source, ivar, destination);
|
||||
}
|
||||
#if defined(DEBUG)
|
||||
else
|
||||
{
|
||||
NSWarnMLog(@"class '%@' has no instance var named: %@", NSStringFromClass(class), label);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -650,6 +648,7 @@
|
|||
@end
|
||||
|
||||
@implementation IBMutableOrderedSet
|
||||
|
||||
- (id) initWithCoder: (NSCoder*)coder
|
||||
{
|
||||
if ([coder allowsKeyedCoding])
|
||||
|
@ -674,7 +673,7 @@
|
|||
[super dealloc];
|
||||
}
|
||||
|
||||
- (NSArray*)orderedObjects
|
||||
- (NSArray*) orderedObjects
|
||||
{
|
||||
return orderedObjects;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue