Minor corrections.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20649 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-02-03 03:41:18 +00:00
parent 57f35f6ece
commit 77e2765461
5 changed files with 28 additions and 8 deletions

View file

@ -1,3 +1,13 @@
2005-02-02 22:44 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.m: -[GormDocument removeConnectionsWithLabel:..] added
break to avoid iterating through all connections when the user has
responded "NO".
* GormFilePrefsManager.m: Update version to 0.9.1
* GormInfo.plist: Update version to 0.9.1
* GormObjCHeaderParser/OCIVarDecl.m: Change to correct problem
reading ivars with <...> in them such as id<SomeProtocol> xxx.
2005-02-01 23:40 Gregory John Casamento <greg_casamento@yahoo.com> 2005-02-01 23:40 Gregory John Casamento <greg_casamento@yahoo.com>
* Version 0.9.0 * Version 0.9.0

View file

@ -3196,6 +3196,7 @@ static NSImage *fileImage = nil;
else else
{ {
removed = NO; removed = NO;
break;
} }
} }
} }

View file

@ -83,7 +83,7 @@ NSString *formatVersion(int version)
+ (int) currentVersion + (int) currentVersion
{ {
return appVersion(0,9,0); return appVersion(0,9,1);
} }
- (void) awakeFromNib - (void) awakeFromNib

View file

@ -14,9 +14,9 @@
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller"; ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
ApplicationIcon = "Gorm.tiff"; ApplicationIcon = "Gorm.tiff";
ApplicationName = "Gorm"; ApplicationName = "Gorm";
ApplicationRelease = "Gorm 0.9.0 (Release)"; ApplicationRelease = "Gorm 0.9.1 (Alpha)";
Authors = ("Gregory John Casamento <greg_casamento@yahoo.com>","Richard Frith-Macdonald <rfm@gnu.org>","Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>"); Authors = ("Gregory John Casamento <greg_casamento@yahoo.com>","Richard Frith-Macdonald <rfm@gnu.org>","Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 FSF"; Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 FSF";
CopyrightDescription = "Released under the GNU General Public License 2.0"; CopyrightDescription = "Released under the GNU General Public License 2.0";
NSBuildVersion = "0.9.0 Feb 2 2005"; NSBuildVersion = "0.9.1 Feb 2 2005";
} }

View file

@ -79,11 +79,20 @@
} }
// strip protocol qualifiers // strip protocol qualifiers
if(lookAhead(tempString,@"<"))
{
stripScanner = [NSScanner scannerWithString: tempString]; stripScanner = [NSScanner scannerWithString: tempString];
[stripScanner scanUpToString: @"<" intoString: &typeName]; [stripScanner scanUpToString: @"<" intoString: &typeName];
[stripScanner scanUpToAndIncludingString: @">" intoString: NULL]; [stripScanner scanUpToAndIncludingString: @">" intoString: NULL];
[stripScanner scanUpToCharactersFromSet: wsnl intoString: &varName]; [stripScanner scanUpToCharactersFromSet: wsnl intoString: &varName];
resultString = [typeName stringByAppendingString: varName];
resultString = [[typeName stringByAppendingString: @" "]
stringByAppendingString: varName];
}
else
{
resultString = tempString;
}
ASSIGN(ivarString, resultString); ASSIGN(ivarString, resultString);
} }