mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
Merge branch 'autogsdoc-improvements' of ssh://github.com/gnustep/libs-base into autogsdoc-improvements
This commit is contained in:
commit
a881fc25f3
4 changed files with 13 additions and 10 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
# Build products
|
# Build products
|
||||||
|
Documentation
|
||||||
obj
|
obj
|
||||||
config.*
|
config.*
|
||||||
GSConfig.h
|
GSConfig.h
|
||||||
|
@ -8,11 +9,15 @@ dynamic-load.h
|
||||||
Tests/base/*/GNUmakefile
|
Tests/base/*/GNUmakefile
|
||||||
*.log
|
*.log
|
||||||
*.sum
|
*.sum
|
||||||
|
Tools/BaseTools/dependencies
|
||||||
|
|
||||||
# Unit test byproducts
|
# Unit test byproducts
|
||||||
*.err
|
*.err
|
||||||
*.out
|
*.out
|
||||||
|
|
||||||
|
# Core files
|
||||||
|
*.core
|
||||||
|
|
||||||
# Autoconf
|
# Autoconf
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
|
|
||||||
|
@ -34,6 +39,8 @@ Tests/*.tmp
|
||||||
# Editor byproducts
|
# Editor byproducts
|
||||||
*.orig
|
*.orig
|
||||||
*.swp
|
*.swp
|
||||||
|
\#*\#
|
||||||
|
*~
|
||||||
|
|
||||||
# MacOS Desktop Services Store
|
# MacOS Desktop Services Store
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
License along with this library; if not, write to the Free
|
License along with this library; if not, write to the Free
|
||||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
Boston, MA 02110 USA.
|
Boston, MA 02110 USA.
|
||||||
|
|
||||||
AutogsdocSource: NSMetadataQuery.h
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __NSMetadata_h_GNUSTEP_BASE_INCLUDE
|
#ifndef __NSMetadata_h_GNUSTEP_BASE_INCLUDE
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* Implementation of class NSDateComponentsFormatter
|
/**Implementation of class NSDateComponentsFormatter
|
||||||
Copyright (C) 2019 Free Software Foundation, Inc.
|
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
|
Date: Wed Nov 6 00:24:02 EST 2019
|
||||||
|
|
||||||
This file is part of the GNUstep Library.
|
This file is part of the GNUstep Library.
|
||||||
|
@ -456,7 +456,7 @@
|
||||||
return _zeroFormattingBehavior;
|
return _zeroFormattingBehavior;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior;
|
- (void) setZeroFormattingBehavior: (NSDateComponentsFormatterZeroFormattingBehavior)behavior
|
||||||
{
|
{
|
||||||
_zeroFormattingBehavior = behavior;
|
_zeroFormattingBehavior = behavior;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
License along with this library; if not, write to the Free
|
License along with this library; if not, write to the Free
|
||||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
Boston, MA 02110 USA.
|
Boston, MA 02110 USA.
|
||||||
|
|
||||||
AutogsdocSource: NSMetadata.m
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#import "common.h"
|
#import "common.h"
|
||||||
|
@ -122,7 +120,7 @@
|
||||||
[super dealloc];
|
[super dealloc];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (id<NSMetadataQueryDelegate>) delegate;
|
- (id<NSMetadataQueryDelegate>) delegate
|
||||||
{
|
{
|
||||||
return this->_delegate;
|
return this->_delegate;
|
||||||
}
|
}
|
||||||
|
@ -137,7 +135,7 @@
|
||||||
[self subclassResponsibility: _cmd];
|
[self subclassResponsibility: _cmd];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSArray *) groupedResults;
|
- (NSArray *) groupedResults
|
||||||
{
|
{
|
||||||
return [self subclassResponsibility: _cmd];
|
return [self subclassResponsibility: _cmd];
|
||||||
}
|
}
|
||||||
|
@ -218,7 +216,7 @@
|
||||||
return this->_scopes;
|
return this->_scopes;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) setDelegate: (id<NSMetadataQueryDelegate>)delegate;
|
- (void) setDelegate: (id<NSMetadataQueryDelegate>)delegate
|
||||||
{
|
{
|
||||||
this->_delegate = delegate;
|
this->_delegate = delegate;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue