diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-05 23:47:31 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-05 23:47:31 +0000 |
commit | 585926926a4dc5d5f1b99b7ec8ad00368b289aa6 (patch) | |
tree | 4af2239472d1c0ec157d222c92c29bfcabe91453 /chrome/browser/autocomplete/autocomplete_popup_view_mac.mm | |
parent | ba3ea0431f89907fbfede1426a6bc944e7c91120 (diff) | |
download | chromium_src-585926926a4dc5d5f1b99b7ec8ad00368b289aa6.zip chromium_src-585926926a4dc5d5f1b99b7ec8ad00368b289aa6.tar.gz chromium_src-585926926a4dc5d5f1b99b7ec8ad00368b289aa6.tar.bz2 |
Fix Mac build failure.
BUG=27570
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43677 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete_popup_view_mac.mm')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete_popup_view_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_popup_view_mac.mm b/chrome/browser/autocomplete/autocomplete_popup_view_mac.mm index 973ed67..f01951b 100644 --- a/chrome/browser/autocomplete/autocomplete_popup_view_mac.mm +++ b/chrome/browser/autocomplete/autocomplete_popup_view_mac.mm @@ -348,7 +348,7 @@ void AutocompletePopupViewMac::UpdatePopupAppearance() { AutocompleteButtonCell* cell = [matrix cellAtRow:ii column:0]; const AutocompleteMatch& match = model_->result().match_at(ii); [cell setImage:RetainedResourceImage(match.starred ? - IDR_O2_STAR : AutocompleteMatch::TypeToIcon(match.type))]; + IDR_OMNIBOX_STAR : AutocompleteMatch::TypeToIcon(match.type))]; [cell setAttributedTitle:MatchText(match, resultFont, r.size.width)]; } |