Remove category which declared/implemented setSuperview:.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23121 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-07-03 21:19:40 +00:00
parent ebab43f63f
commit 6c4dab7c20
2 changed files with 5 additions and 17 deletions

View file

@ -1,3 +1,8 @@
2006-07-03 17:18 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormNibWrapperLoader.m: Remove category for NSView
which provided setSuperview as it is no longer needed.
2006-07-02 00:53 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormCustomView.[hm]: If CustomView includes some

View file

@ -48,17 +48,6 @@
}
@end
@interface NSView (NibLoaderPrivate)
- (void) setSuperview: (NSView *)view;
@end
@implementation NSView (NibLoaderPrivate)
- (void) setSuperview: (NSView *)view
{
ASSIGN(_super_view, view);
}
@end
@interface GormNibWrapperLoader : GormWrapperLoader
{
NSIBObjectData *container;
@ -351,12 +340,6 @@
[obj setAction: NULL];
}
// okay, this might be a kludge...
if([obj isKindOfClass: [NSView class]])
{
[obj setSuperview: nil];
}
return obj;
}
@end