Chromium Code Reviews

Unified Diff: chrome/browser/cocoa/bookmark_bar_controller.mm

Issue 209004: Use delegate protocols present in the 10.6 SDK (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/cocoa/bookmark_bar_controller.mm
===================================================================
--- chrome/browser/cocoa/bookmark_bar_controller.mm (revision 26448)
+++ chrome/browser/cocoa/bookmark_bar_controller.mm (working copy)
@@ -184,7 +184,7 @@
// Return nil if menuItem has no delegate.
- (BookmarkNode*)nodeFromMenuItem:(id)menuItem {
- NSCell* cell = [[menuItem menu] delegate];
+ NSCell* cell = reinterpret_cast<NSCell*>([[menuItem menu] delegate]);
if (!cell)
return nil;
BookmarkNode* node = static_cast<BookmarkNode*>(
« no previous file with comments | « chrome/browser/cocoa/autocomplete_text_field_unittest.mm ('k') | chrome/browser/cocoa/bookmark_bubble_controller.h » ('j') | no next file with comments »

Powered by Google App Engine