Index: chrome/browser/ui/cocoa/about_ipc_controller.mm |
diff --git a/chrome/browser/ui/cocoa/about_ipc_controller.mm b/chrome/browser/ui/cocoa/about_ipc_controller.mm |
index 7a3654aff764e58e55ee113f45ef27cb4efee25b..597d5e12c3abcce9a2eb6e835e8e99923e1b9757 100644 |
--- a/chrome/browser/ui/cocoa/about_ipc_controller.mm |
+++ b/chrome/browser/ui/cocoa/about_ipc_controller.mm |
@@ -185,7 +185,8 @@ AboutIPCController* gSharedController = nil; |
NSUInteger count = [[dataController_ arrangedObjects] count]; |
// Uncomment if you want scroll-to-end behavior... but seems expensive. |
// [tableView_ scrollRowToVisible:count-1]; |
- [eventCount_ setStringValue:[NSString stringWithFormat:@"%d", count]]; |
+ [eventCount_ setStringValue:[NSString stringWithFormat:@"%d", |
Mark Mentovai
2012/08/20 13:25:58
Same.
|
+ static_cast<int32_t>(count)]]; |
} |
- (void)setDisplayViewMessages:(BOOL)display { |