some cleanup for autogsdoc

This commit is contained in:
Riccardo Mottola 2023-10-23 21:41:59 +02:00
parent a9a198a283
commit 02262e9ac0
3 changed files with 6 additions and 10 deletions

View file

@ -20,8 +20,6 @@
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110 USA.
AutogsdocSource: NSMetadataQuery.h
*/
#ifndef __NSMetadata_h_GNUSTEP_BASE_INCLUDE

View file

@ -1,7 +1,7 @@
/* Implementation of class NSDateComponentsFormatter
/**Implementation of class NSDateComponentsFormatter
Copyright (C) 2019 Free Software Foundation, Inc.
By: Gregory Casamento <greg.casamento@gmail.com>
Author: Gregory Casamento <greg.casamento@gmail.com>
Date: Wed Nov 6 00:24:02 EST 2019
This file is part of the GNUstep Library.
@ -456,7 +456,7 @@
return _zeroFormattingBehavior;
}
- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior;
- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior
{
_zeroFormattingBehavior = behavior;
}

View file

@ -20,8 +20,6 @@
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110 USA.
AutogsdocSource: NSMetadata.m
*/
#import "common.h"
@ -122,7 +120,7 @@
[super dealloc];
}
- (id<NSMetadataQueryDelegate>) delegate;
- (id<NSMetadataQueryDelegate>) delegate
{
return this->_delegate;
}
@ -137,7 +135,7 @@
[self subclassResponsibility: _cmd];
}
- (NSArray *) groupedResults;
- (NSArray *) groupedResults
{
return [self subclassResponsibility: _cmd];
}
@ -218,7 +216,7 @@
return this->_scopes;
}
- (void) setDelegate: (id<NSMetadataQueryDelegate>)delegate;
- (void) setDelegate: (id<NSMetadataQueryDelegate>)delegate
{
this->_delegate = delegate;
}