diff --git a/.gitignore b/.gitignore index f578a2aeaf..7013f0ba09 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ # Build products +Documentation obj config.* GSConfig.h @@ -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 @@ -34,6 +39,8 @@ Tests/*.tmp # Editor byproducts *.orig *.swp +\#*\# +*~ # MacOS Desktop Services Store .DS_Store diff --git a/Headers/Foundation/NSMetadata.h b/Headers/Foundation/NSMetadata.h index 8fff01ffc3..580bd902fc 100644 --- a/Headers/Foundation/NSMetadata.h +++ b/Headers/Foundation/NSMetadata.h @@ -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 diff --git a/Source/NSDateComponentsFormatter.m b/Source/NSDateComponentsFormatter.m index b13535beb5..7b7666f7a4 100644 --- a/Source/NSDateComponentsFormatter.m +++ b/Source/NSDateComponentsFormatter.m @@ -1,7 +1,7 @@ -/* Implementation of class NSDateComponentsFormatter +/**Implementation of class NSDateComponentsFormatter Copyright (C) 2019 Free Software Foundation, Inc. - By: Gregory Casamento + Author: Gregory Casamento Date: Wed Nov 6 00:24:02 EST 2019 This file is part of the GNUstep Library. @@ -456,7 +456,7 @@ - (NSDateComponentsFormatterZeroFormattingBehavior) zeroFormattingBehavior return _zeroFormattingBehavior; } -- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior; +- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior { _zeroFormattingBehavior = behavior; } diff --git a/Source/NSMetadata.m b/Source/NSMetadata.m index 5f13aca4a3..3590efdd57 100644 --- a/Source/NSMetadata.m +++ b/Source/NSMetadata.m @@ -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 @@ - (void) dealloc [super dealloc]; } -- (id) delegate; +- (id) delegate { return this->_delegate; } @@ -137,7 +135,7 @@ - (void) enableUpdates [self subclassResponsibility: _cmd]; } -- (NSArray *) groupedResults; +- (NSArray *) groupedResults { return [self subclassResponsibility: _cmd]; } @@ -218,7 +216,7 @@ - (NSArray *) searchScopes return this->_scopes; } -- (void) setDelegate: (id)delegate; +- (void) setDelegate: (id)delegate { this->_delegate = delegate; }