diff options
author | Eddie Ehlin <eddiex@eddiex.se> | 2013-03-16 14:59:21 +0100 |
---|---|---|
committer | Eddie Ehlin <eddiex@eddiex.se> | 2013-03-16 14:59:21 +0100 |
commit | f0cffa4fc9f7d29d8f4dabb5559bcc1048eca25d (patch) | |
tree | a97f295b77ff42014b37f450c813998e779ea93a /iBean | |
parent | 50195e638e36549354fc4ddf7236ca2394dd1fcb (diff) | |
download | iBean-f0cffa4fc9f7d29d8f4dabb5559bcc1048eca25d.tar.gz iBean-f0cffa4fc9f7d29d8f4dabb5559bcc1048eca25d.zip |
Fix for "Incomplete implementation" for Configuration Interface
Diffstat (limited to 'iBean')
-rw-r--r-- | iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate | bin | 57787 -> 57592 bytes | |||
-rw-r--r-- | iBean/iBean/Configuration+Interface.m | 3 |
2 files changed, 1 insertions, 2 deletions
diff --git a/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate b/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate Binary files differindex beaf722..5bd8248 100644 --- a/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate +++ b/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/iBean/iBean/Configuration+Interface.m b/iBean/iBean/Configuration+Interface.m index 53e9773..1dfee60 100644 --- a/iBean/iBean/Configuration+Interface.m +++ b/iBean/iBean/Configuration+Interface.m @@ -25,14 +25,13 @@ NSLog(@"Configuration+Interface - removeObjectFromThresholdsAtIndex: Index out of range!"); } -- (void)replaceThresholdsAtIndexes:(NSIndexSet *)thresholdsIndexes withBeans:(NSArray *)thresholds +- (void)replaceThresholdsAtIndexes:(NSIndexSet *)thresholdsIndexes withThresholds:(NSArray *)thresholds { if (thresholds.count > 0) { NSMutableOrderedSet *tmpSet = [self mutableOrderedSetValueForKey:@"thresholds"]; [tmpSet replaceObjectsAtIndexes:thresholdsIndexes withObjects:thresholds]; } - } @end |