Improved GModel support.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15581 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-01-13 07:15:18 +00:00
parent a03ab599c2
commit 8c0b18b4ab
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2003-01-13 Gregory John Casamento <greg_casamento@yahoo.com>
* GModelDecoder.m: openGModel: added code to import
the headers of custom classes read from the .gmodel file.
2003-01-12 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.m: -[GormDocument parseHeader:]: Fixed a

View file

@ -342,6 +342,12 @@ static BOOL gormFileOwnerDecoded;
{
if (obj != gormNibOwner)
[self setName: nil forObject: obj];
if([obj isKindOfClass: [GormObjectProxy class]])
{
NSLog(@"processing... %@",[obj className]);
[self defineClass: [obj className] inFile: path];
}
}
if ([gormRealObject isKindOfClass: [GModelApplication class]])
{