fix -doubleForKey:

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@38209 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2014-11-27 08:35:31 +00:00
parent 897608cdb0
commit 2ffb3091f5
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2014-11-27 Richard Frith-Macdonald <rfm@gnu.org>
* EcUserDefaults.m: The -doubleForKey: method was commented out!
Restore it.
2014-11-26 Richard Frith-Macdonald <rfm@gnu.org>
* EcProcess.m: Make -cmdLastIP, -cmdLastOP (and their setters)

View file

@ -100,12 +100,10 @@ static NSLock *lock = nil;
return [defs dictionaryForKey: [self _getKey: aKey]];
}
#if 0
- (double) doubleForKey: (NSString*)aKey
{
return [defs doubleForKey: [self _getKey: aKey]];
}
#endif
- (float) floatForKey: (NSString*)aKey
{