mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-22 20:18:53 +08:00
Ensure the stars for all pointers belong to the variable rather than the type. Refs #614
This commit is contained in:
@@ -46,7 +46,7 @@ NSString * const RKTableControllerDidLoadErrorNotification = @"RKTableController
|
||||
NSString * const RKTableControllerDidBecomeOnline = @"RKTableControllerDidBecomeOnline";
|
||||
NSString * const RKTableControllerDidBecomeOffline = @"RKTableControllerDidBecomeOffline";
|
||||
|
||||
static NSString * lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey";
|
||||
static NSString *lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey";
|
||||
|
||||
@implementation RKAbstractTableController
|
||||
|
||||
@@ -209,7 +209,7 @@ static NSString * lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey"
|
||||
- (void)setViewController:(UIViewController *)viewController
|
||||
{
|
||||
if ([viewController isKindOfClass:[UITableViewController class]]) {
|
||||
self.tableView = [(UITableViewController*)viewController tableView];
|
||||
self.tableView = [(UITableViewController *)viewController tableView];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1261,7 +1261,7 @@ static NSString * lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey"
|
||||
}
|
||||
}
|
||||
|
||||
- (void)animationDidStopAddingSwipeView:(NSString *)animationID finished:(NSNumber *)finished context:(void*)context
|
||||
- (void)animationDidStopAddingSwipeView:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context
|
||||
{
|
||||
_animatingCellSwipe = NO;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user