diff options
Diffstat (limited to 'src/tab-label.c')
-rw-r--r-- | src/tab-label.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tab-label.c b/src/tab-label.c index 5ac3fc0..72443b9 100644 --- a/src/tab-label.c +++ b/src/tab-label.c @@ -164,7 +164,7 @@ button_press_cb(GtkWidget *widget, GdkEventButton *event, } static void -update_image(MqTabLabel *tab_label, GdkPixbuf *favicon) +set_image(MqTabLabel *tab_label, GdkPixbuf *favicon) { if (favicon) { gtk_image_set_from_pixbuf(GTK_IMAGE(tab_label->image), favicon); @@ -209,7 +209,7 @@ favicon_cb(WebKitWebView G_GNUC_UNUSED *web_view, } } - update_image(tab_label, scaled_pixbuf); + set_image(tab_label, scaled_pixbuf); } static void |