mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Added ChangeLog entry from last commit
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31644 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
92c5303895
commit
ade8486dd0
4 changed files with 31 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2010-11-19 22:15 theraven
|
||||||
|
|
||||||
|
* libs/base/trunk/Source/GSICUString.h: Fixed missing newline at
|
||||||
|
end of GSICUString.h
|
||||||
|
|
||||||
|
2010-11-19 22:15 theraven
|
||||||
|
|
||||||
|
* libs/base/trunk/Source/GSICUString.h: Fixed missing newline at
|
||||||
|
end of GSICUString.h
|
||||||
|
|
||||||
2010-11-19 Niels Grewe <niels.grewe@halbordnung.de>
|
2010-11-19 Niels Grewe <niels.grewe@halbordnung.de>
|
||||||
|
|
||||||
* Source/NSRegularExpression.m: Rearrange for non-C99 compliant
|
* Source/NSRegularExpression.m: Rearrange for non-C99 compliant
|
||||||
|
|
|
@ -105,9 +105,7 @@ extern "C" {
|
||||||
#if GS_EXPOSE(NSDateFormatter)
|
#if GS_EXPOSE(NSDateFormatter)
|
||||||
NSString *_dateFormat;
|
NSString *_dateFormat;
|
||||||
BOOL _allowsNaturalLanguage;
|
BOOL _allowsNaturalLanguage;
|
||||||
#endif
|
NSLocale *locale;
|
||||||
#if !GS_NONFRAGILE
|
|
||||||
void *_unused;
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,8 +139,14 @@ extern "C" {
|
||||||
* specifies strings similar to "June 18, 1991".
|
* specifies strings similar to "June 18, 1991".
|
||||||
*/
|
*/
|
||||||
- (NSString *) dateFormat;
|
- (NSString *) dateFormat;
|
||||||
|
- (NSLocale*)locale;
|
||||||
|
- (void)setLocale: (NSLocale*)aLocale;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
extern NSString *const NSDateFormatterLongStyle;
|
||||||
|
extern NSString *const NSDateFormatterShortStyle;
|
||||||
|
extern NSString *const NSDateFormatterNoStyle;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
|
|
|
@ -62,6 +62,7 @@
|
||||||
|
|
||||||
- (void) dealloc
|
- (void) dealloc
|
||||||
{
|
{
|
||||||
|
RELEASE(locale);
|
||||||
RELEASE(_dateFormat);
|
RELEASE(_dateFormat);
|
||||||
[super dealloc];
|
[super dealloc];
|
||||||
}
|
}
|
||||||
|
@ -70,6 +71,14 @@
|
||||||
{
|
{
|
||||||
return [self stringForObjectValue: anObject];
|
return [self stringForObjectValue: anObject];
|
||||||
}
|
}
|
||||||
|
- (NSLocale*)locale
|
||||||
|
{
|
||||||
|
return locale;
|
||||||
|
}
|
||||||
|
- (void)setLocale: (NSLocale*)aLocale
|
||||||
|
{
|
||||||
|
ASSIGN(locale, aLocale);
|
||||||
|
}
|
||||||
|
|
||||||
- (void) encodeWithCoder: (NSCoder*)aCoder
|
- (void) encodeWithCoder: (NSCoder*)aCoder
|
||||||
{
|
{
|
||||||
|
|
5
Tools/mkchlog.sh
Normal file
5
Tools/mkchlog.sh
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
svn log -rPREV --xml --verbose | xsltproc /usr/local/share/svn2cl/svn2cl.xsl - > ChangeLog.new
|
||||||
|
cat ChangeLog >> ChangeLog.new
|
||||||
|
mv ChangeLog.new ChangeLog
|
||||||
|
svn commit -m 'Added ChangeLog entry from last commit'
|
Loading…
Add table
Add a link
Reference in a new issue