mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 16:10:48 +00:00
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:
parent
6be9174933
commit
5a3c3668c3
3 changed files with 5 additions and 24 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-06-15 02:35 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Headers/gnustep/gui/GSNibTemplates.h, Source/NSBundleAdditions.m:
|
||||
Remove unused GSFontProxy class.
|
||||
|
||||
2003-06-08 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* Headers/gnustep/gui/IMConnectors.h: Change syntax of include <>
|
||||
|
|
|
@ -154,9 +154,6 @@
|
|||
- (void) setTemplate: (id)template;
|
||||
@end
|
||||
|
||||
@interface GSFontProxy : NSFont
|
||||
@end
|
||||
|
||||
/*
|
||||
@interface GSStringProxy : NSString
|
||||
@end
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue