Skip to content

Commit

Permalink
Merge branch 'autogsdoc-improvements' of ssh://github.com/gnustep/lib…
Browse files Browse the repository at this point in the history
…s-base into autogsdoc-improvements
  • Loading branch information
rfm committed Oct 23, 2023
2 parents 4c4397b + 38a9b9c commit a881fc2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Build products
Documentation
obj
config.*
GSConfig.h
Expand All @@ -8,11 +9,15 @@ dynamic-load.h
Tests/base/*/GNUmakefile
*.log
*.sum
Tools/BaseTools/dependencies

# Unit test byproducts
*.err
*.out

# Core files
*.core

# Autoconf
autom4te.cache

Expand All @@ -34,6 +39,8 @@ Tests/*.tmp
# Editor byproducts
*.orig
*.swp
\#*\#
*~

# MacOS Desktop Services Store
.DS_Store
Expand Down
2 changes: 0 additions & 2 deletions Headers/Foundation/NSMetadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Source/NSDateComponentsFormatter.m
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -456,7 +456,7 @@ - (NSDateComponentsFormatterZeroFormattingBehavior) zeroFormattingBehavior
return _zeroFormattingBehavior;
}

- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior;
- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior
{
_zeroFormattingBehavior = behavior;
}
Expand Down
8 changes: 3 additions & 5 deletions Source/NSMetadata.m
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -122,7 +120,7 @@ - (void) dealloc
[super dealloc];
}

- (id<NSMetadataQueryDelegate>) delegate;
- (id<NSMetadataQueryDelegate>) delegate
{
return this->_delegate;
}
Expand All @@ -137,7 +135,7 @@ - (void) enableUpdates
[self subclassResponsibility: _cmd];
}

- (NSArray *) groupedResults;
- (NSArray *) groupedResults
{
return [self subclassResponsibility: _cmd];
}
Expand Down Expand Up @@ -218,7 +216,7 @@ - (NSArray *) searchScopes
return this->_scopes;
}

- (void) setDelegate: (id<NSMetadataQueryDelegate>)delegate;
- (void) setDelegate: (id<NSMetadataQueryDelegate>)delegate
{
this->_delegate = delegate;
}
Expand Down

0 comments on commit a881fc2

Please sign in to comment.