diff --git a/ChangeLog b/ChangeLog index e27927b7d..4460b7a1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-10-03 Adam Fedor + + * Headers/gnustep/gui/NSNibLoading.h: New GSCustomView class. + * Source/NSBundleAdditions.m: Implement it. + 2001-10-02 Adam Fedor * Source/NSWindow.m (-orderWindow:relativeTo:): setFrame: to the diff --git a/Headers/gnustep/gui/NSNibLoading.h b/Headers/gnustep/gui/NSNibLoading.h index d08244986..14958ded9 100644 --- a/Headers/gnustep/gui/NSNibLoading.h +++ b/Headers/gnustep/gui/NSNibLoading.h @@ -85,6 +85,10 @@ } @end +@interface GSCustomView : GSNibItem +{ +} +@end #endif /* NO_GNUSTEP */ #endif /* _GNUstep_H_NSNibLoading */ diff --git a/Source/NSBundleAdditions.m b/Source/NSBundleAdditions.m index 452e20cd2..d673861dd 100644 --- a/Source/NSBundleAdditions.m +++ b/Source/NSBundleAdditions.m @@ -598,3 +598,15 @@ Class gmodel_class(void) @end +@implementation GSCustomView + +- (void) encodeWithCoder: (NSCoder*)aCoder +{ + [super encodeWithCoder: aCoder]; +} + +- (id) initWithCoder: (NSCoder*)aCoder +{ + return [super initWithCoder: aCoder]; +} +@end