From f0cffa4fc9f7d29d8f4dabb5559bcc1048eca25d Mon Sep 17 00:00:00 2001 From: Eddie Ehlin Date: Sat, 16 Mar 2013 14:59:21 +0100 Subject: Fix for "Incomplete implementation" for Configuration Interface --- .../UserInterfaceState.xcuserstate | Bin 57787 -> 57592 bytes iBean/iBean/Configuration+Interface.m | 3 +-- 2 files changed, 1 insertion(+), 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 index beaf722..5bd8248 100644 Binary files a/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate and b/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate differ 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 -- cgit v1.2.3