diff options
-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 |