mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
Tweak for documenting tools
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14879 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
82947875f2
commit
f66201b01b
1 changed files with 10 additions and 4 deletions
|
@ -1635,7 +1635,7 @@ fail:
|
||||||
|
|
||||||
- (NSMutableDictionary*) parseImplementation
|
- (NSMutableDictionary*) parseImplementation
|
||||||
{
|
{
|
||||||
NSString *tmp = nil;
|
NSString *nc = nil;
|
||||||
NSString *name;
|
NSString *name;
|
||||||
NSString *base = nil;
|
NSString *base = nil;
|
||||||
NSString *category = nil;
|
NSString *category = nil;
|
||||||
|
@ -1647,7 +1647,7 @@ fail:
|
||||||
/*
|
/*
|
||||||
* Record any class documentation for this class
|
* Record any class documentation for this class
|
||||||
*/
|
*/
|
||||||
tmp = AUTORELEASE(comment);
|
nc = AUTORELEASE(comment);
|
||||||
comment = nil;
|
comment = nil;
|
||||||
|
|
||||||
if ((name = [self parseIdentifier]) == nil
|
if ((name = [self parseIdentifier]) == nil
|
||||||
|
@ -1710,11 +1710,17 @@ fail:
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
NSString *oc = [dict objectForKey: @"Comment"];
|
||||||
|
|
||||||
[dict setObject: @"YES" forKey: @"Implemented"];
|
[dict setObject: @"YES" forKey: @"Implemented"];
|
||||||
/*
|
/*
|
||||||
* Append any comment we have for this
|
* Append any comment we have for this ... if it's not just a copy
|
||||||
|
* because we've parsed the same file twice.
|
||||||
*/
|
*/
|
||||||
[self appendComment: tmp to: dict];
|
if ([oc isEqual: nc] == NO)
|
||||||
|
{
|
||||||
|
[self appendComment: nc to: dict];
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
* Update base class if necessary.
|
* Update base class if necessary.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue