(iOS) Fix broken settings writer

This commit is contained in:
meancoot 2013-06-14 01:00:08 -04:00
parent 65fb256b90
commit 30b49e26c6

View File

@ -397,8 +397,7 @@ static RASettingData* custom_action(NSString* action, id data)
if (!config) if (!config)
return; return;
#if 0 NSArray* list = settingList ? settingList : self.sections;
NSArray* list = settingList ? settingList : settings;
for (int i = 0; i < [list count]; i++) for (int i = 0; i < [list count]; i++)
{ {
@ -449,7 +448,6 @@ static RASettingData* custom_action(NSString* action, id data)
} }
} }
} }
#endif
} }
- (void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath - (void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath