Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Unified Diff: ui/message_center/cocoa/status_item_view.mm

Issue 20182002: Make inttypes.h and similar macro usage C++11-friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: line Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/render_text_unittest.cc ('k') | url/url_canon_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/cocoa/status_item_view.mm
diff --git a/ui/message_center/cocoa/status_item_view.mm b/ui/message_center/cocoa/status_item_view.mm
index 5e1002f9bfc4fe417efad5fbbd381f33bd2bfe46..c0efa075d1f6bdf2e8ae71b3169ef46f368f2377 100644
--- a/ui/message_center/cocoa/status_item_view.mm
+++ b/ui/message_center/cocoa/status_item_view.mm
@@ -177,7 +177,7 @@ const CGFloat kUnreadCountMinY = 4;
if (unreadCount_ > 9)
count = @"9+";
else
- count = [NSString stringWithFormat:@"%"PRIuS, unreadCount_];
+ count = [NSString stringWithFormat:@"%" PRIuS, unreadCount_];
NSColor* fontColor = [self shouldHighlight] ? [NSColor whiteColor]
: [NSColor blackColor];
« no previous file with comments | « ui/gfx/render_text_unittest.cc ('k') | url/url_canon_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698