diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-12-21 11:45:39 (EST) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-12-21 11:45:39 (EST) |
commit | 3c1a6fb3a62dc31f26bfd7439c9d80f034505cc0 (patch) | |
tree | 0ff78e970bb3e1cad4ed14d600bcb7b62e79ba24 /src/tab-label.c | |
parent | 443f4908cb5ebd9ea9d79a7ea1e577a7b116b845 (diff) | |
download | marquee-3c1a6fb3a62dc31f26bfd7439c9d80f034505cc0.zip marquee-3c1a6fb3a62dc31f26bfd7439c9d80f034505cc0.tar.gz marquee-3c1a6fb3a62dc31f26bfd7439c9d80f034505cc0.tar.bz2 |
MqTabLabel: Rename a static function
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 |