| Index: chrome/browser/ui/gtk/page_info_bubble_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/page_info_bubble_gtk.cc b/chrome/browser/ui/gtk/page_info_bubble_gtk.cc
|
| index ffac6d6ecdd016bdb5ba090d0621c2e36a345301..f28202faac1ca5636d8e1405dbef28f652fda104 100644
|
| --- a/chrome/browser/ui/gtk/page_info_bubble_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/page_info_bubble_gtk.cc
|
| @@ -214,7 +214,7 @@ GtkWidget* PageInfoBubbleGtk::CreateSection(
|
| const PageInfoModel::SectionInfo& section) {
|
| GtkWidget* section_box = gtk_hbox_new(FALSE, gtk_util::kControlSpacing);
|
|
|
| - GdkPixbuf* pixbuf = model_.GetIconImage(section.icon_id);
|
| + GdkPixbuf* pixbuf = *model_.GetIconImage(section.icon_id);
|
| if (pixbuf) {
|
| GtkWidget* image = gtk_image_new_from_pixbuf(pixbuf);
|
| gtk_box_pack_start(GTK_BOX(section_box), image, FALSE, FALSE, 0);
|
|
|