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:
David Chisnall 2010-11-23 13:16:53 +00:00
parent 089a23235a
commit e933a5dfee
4 changed files with 31 additions and 3 deletions

View file

@ -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>
* Source/NSRegularExpression.m: Rearrange for non-C99 compliant

View file

@ -105,9 +105,7 @@ extern "C" {
#if GS_EXPOSE(NSDateFormatter)
NSString *_dateFormat;
BOOL _allowsNaturalLanguage;
#endif
#if !GS_NONFRAGILE
void *_unused;
NSLocale *locale;
#endif
}
@ -141,8 +139,14 @@ extern "C" {
* specifies strings similar to "June 18, 1991".
*/
- (NSString *) dateFormat;
- (NSLocale*)locale;
- (void)setLocale: (NSLocale*)aLocale;
@end
extern NSString *const NSDateFormatterLongStyle;
extern NSString *const NSDateFormatterShortStyle;
extern NSString *const NSDateFormatterNoStyle;
#endif
#if defined(__cplusplus)

View file

@ -62,6 +62,7 @@
- (void) dealloc
{
RELEASE(locale);
RELEASE(_dateFormat);
[super dealloc];
}
@ -70,6 +71,14 @@
{
return [self stringForObjectValue: anObject];
}
- (NSLocale*)locale
{
return locale;
}
- (void)setLocale: (NSLocale*)aLocale
{
ASSIGN(locale, aLocale);
}
- (void) encodeWithCoder: (NSCoder*)aCoder
{

5
Tools/mkchlog.sh Normal file
View 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'