mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Minor improvement to GModelDecoder and updated Gorm version.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19281 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b03878cd22
commit
37fa0eb3d8
3 changed files with 12 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-05-10 11:58 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Gorm.m: Update version to 0.7.7 (Alpha) to avoid confusion between
|
||||
users using the release and users using CVS.
|
||||
|
||||
2004-05-10 09:55 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Version 0.7.6
|
||||
|
|
|
@ -244,7 +244,8 @@ static BOOL gormFileOwnerDecoded;
|
|||
NSString *superClass = nil;
|
||||
BOOL added = NO;
|
||||
|
||||
if([object isKindOfClass: [GormCustomView class]])
|
||||
if(superClass == nil &&
|
||||
[object isKindOfClass: [GormCustomView class]])
|
||||
{
|
||||
superClass = @"NSView";
|
||||
}
|
||||
|
@ -369,7 +370,7 @@ static BOOL gormFileOwnerDecoded;
|
|||
|
||||
source = [self connectionObjectForObject: [con source]];
|
||||
dest = [self connectionObjectForObject: [con destination]];
|
||||
NSLog(@"connector = %@",con);
|
||||
NSDebugLog(@"connector = %@",con);
|
||||
if ([[con className] isEqual: @"IMOutletConnector"]) // We don't link the gmodel library at compile time...
|
||||
{
|
||||
newcon = AUTORELEASE([[NSNibOutletConnector alloc] init]);
|
||||
|
@ -391,8 +392,8 @@ static BOOL gormFileOwnerDecoded;
|
|||
}
|
||||
}
|
||||
|
||||
NSLog(@"conn = %@ source = %@ dest = %@ label = %@, src name = %@ dest name = %@", newcon, source, dest,
|
||||
[con label], [source className], [dest className]);
|
||||
NSDebugLog(@"conn = %@ source = %@ dest = %@ label = %@, src name = %@ dest name = %@", newcon, source, dest,
|
||||
[con label], [source className], [dest className]);
|
||||
[newcon setSource: source];
|
||||
[newcon setDestination: dest];
|
||||
[newcon setLabel: [con label]];
|
||||
|
|
4
Gorm.m
4
Gorm.m
|
@ -544,9 +544,9 @@ NSString *GormResizeCellNotification = @"GormResizeCellNotification";
|
|||
forKey: @"ApplicationName"];
|
||||
[dict setObject: @"[GNUstep | Graphical] Object Relationship Modeller"
|
||||
forKey: @"ApplicationDescription"];
|
||||
[dict setObject: @"Gorm 0.7.6 (Release)"
|
||||
[dict setObject: @"Gorm 0.7.7 (Alpha)"
|
||||
forKey: @"ApplicationRelease"];
|
||||
[dict setObject: @"0.7.6 May 10 2004"
|
||||
[dict setObject: @"0.7.7 May 10 2004"
|
||||
forKey: @"FullVersionID"];
|
||||
[dict setObject: [NSArray arrayWithObjects: @"Gregory John Casamento <greg_casamento@yahoo.com>",
|
||||
@"Richard Frith-Macdonald <rfm@gnu.org>",
|
||||
|
|
Loading…
Reference in a new issue