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:
theraven 2010-11-23 13:16:53 +00:00
parent 92c5303895
commit ade8486dd0
4 changed files with 31 additions and 3 deletions

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
{