mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-05-11 16:30:48 +00:00
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:
parent
897608cdb0
commit
2ffb3091f5
2 changed files with 5 additions and 2 deletions
|
@ -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>
|
2014-11-26 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* EcProcess.m: Make -cmdLastIP, -cmdLastOP (and their setters)
|
* EcProcess.m: Make -cmdLastIP, -cmdLastOP (and their setters)
|
||||||
|
|
|
@ -100,12 +100,10 @@ static NSLock *lock = nil;
|
||||||
return [defs dictionaryForKey: [self _getKey: aKey]];
|
return [defs dictionaryForKey: [self _getKey: aKey]];
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
- (double) doubleForKey: (NSString*)aKey
|
- (double) doubleForKey: (NSString*)aKey
|
||||||
{
|
{
|
||||||
return [defs doubleForKey: [self _getKey: aKey]];
|
return [defs doubleForKey: [self _getKey: aKey]];
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
- (float) floatForKey: (NSString*)aKey
|
- (float) floatForKey: (NSString*)aKey
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue