Remove unused GSFontProxy class.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16921 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
alexm 2003-06-15 00:36:36 +00:00
parent fc402789db
commit 151ee86f0c
3 changed files with 5 additions and 24 deletions

View file

@ -295,9 +295,6 @@ Class gmodel_class(void)
id obj;
// font fallback and automatic translation...
#if 0
[unarchiver decodeClassName: @"NSFont" asClassName: @"GSFontProxy"];
#endif
// [unarchiver decodeClassName: @"NSString" asClassName: @"GSStringProxy"];
NSDebugLog(@"Invoking unarchiver");
@ -1565,24 +1562,6 @@ Class gmodel_class(void)
}
@end
#if 0
// Font proxy...
@implementation GSFontProxy
- (id) initWithCoder: (NSCoder *)aDecoder
{
id result = [super initWithCoder: aDecoder];
NSDebugLog(@"Inside font proxy...");
if(result == nil)
{
NSDebugLog(@"Couldn't find the font specified, so supply a system font instead.");
result = [NSFont systemFontOfSize: [NSFont systemFontSize]];
}
return result;
}
@end
#endif
// String proxy for dynamic translation...
/*
@implementation GSStringProxy