mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
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:
parent
a03ab599c2
commit
8c0b18b4ab
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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]])
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue