mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
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:
parent
57f35f6ece
commit
77e2765461
5 changed files with 28 additions and 8 deletions
10
ChangeLog
10
ChangeLog
|
@ -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>
|
||||
|
||||
* Version 0.9.0
|
||||
|
|
|
@ -3196,6 +3196,7 @@ static NSImage *fileImage = nil;
|
|||
else
|
||||
{
|
||||
removed = NO;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ NSString *formatVersion(int version)
|
|||
|
||||
+ (int) currentVersion
|
||||
{
|
||||
return appVersion(0,9,0);
|
||||
return appVersion(0,9,1);
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
|
||||
ApplicationIcon = "Gorm.tiff";
|
||||
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>");
|
||||
Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 FSF";
|
||||
CopyrightDescription = "Released under the GNU General Public License 2.0";
|
||||
NSBuildVersion = "0.9.0 Feb 2 2005";
|
||||
NSBuildVersion = "0.9.1 Feb 2 2005";
|
||||
}
|
||||
|
|
|
@ -79,11 +79,20 @@
|
|||
}
|
||||
|
||||
// strip protocol qualifiers
|
||||
stripScanner = [NSScanner scannerWithString: tempString];
|
||||
[stripScanner scanUpToString: @"<" intoString: &typeName];
|
||||
[stripScanner scanUpToAndIncludingString: @">" intoString: NULL];
|
||||
[stripScanner scanUpToCharactersFromSet: wsnl intoString: &varName];
|
||||
resultString = [typeName stringByAppendingString: varName];
|
||||
if(lookAhead(tempString,@"<"))
|
||||
{
|
||||
stripScanner = [NSScanner scannerWithString: tempString];
|
||||
[stripScanner scanUpToString: @"<" intoString: &typeName];
|
||||
[stripScanner scanUpToAndIncludingString: @">" intoString: NULL];
|
||||
[stripScanner scanUpToCharactersFromSet: wsnl intoString: &varName];
|
||||
|
||||
resultString = [[typeName stringByAppendingString: @" "]
|
||||
stringByAppendingString: varName];
|
||||
}
|
||||
else
|
||||
{
|
||||
resultString = tempString;
|
||||
}
|
||||
|
||||
ASSIGN(ivarString, resultString);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue