--- a/cocoaTouch/iPad/PopupMenuViewController.m Fri Apr 02 15:28:09 2010 +0000
+++ b/cocoaTouch/iPad/PopupMenuViewController.m Fri Apr 02 15:30:54 2010 +0000
@@ -96,17 +96,15 @@
NSLog(@"Warning: unset case value in section!");
break;
}
-}
-
--(void) tableView:(UITableView *)aTableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
- [aTableView deselectRowAtIndexPath: indexPath animated:YES];
+
+ [aTableView deselectRowAtIndexPath:indexPath animated:YES];
}
#pragma mark -
#pragma mark actionSheet methods
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
if ([actionSheet cancelButtonIndex] != buttonIndex) {
- [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissPopover" object:nil];
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissPopover" object:nil];
HW_terminate(NO);
}
else
@@ -114,5 +112,4 @@
HW_pause();
}
-
@end