aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Stoeckl <code@mstoeckl.com>2023-11-23 08:01:48 -0500
committerSimon Ser <contact@emersion.fr>2023-11-23 20:42:04 +0100
commit439122e887d8d90991a06cf4877d5dd19bb21692 (patch)
treed2ced5b318d5f643181fcfd1017314c6dc64a40f
parent39b9c0d6baeda0609dfe248fc5b86fb65ff69c2c (diff)
common: rename load_background_image to load_image
-rw-r--r--common/background-image.c2
-rw-r--r--include/background-image.h2
-rw-r--r--swaybar/tray/item.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/common/background-image.c b/common/background-image.c
index d94346c8..2df10dd2 100644
--- a/common/background-image.c
+++ b/common/background-image.c
@@ -104,7 +104,7 @@ static cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(
}
#endif // HAVE_GDK_PIXBUF
-cairo_surface_t *load_background_image(const char *path) {
+cairo_surface_t *load_image(const char *path) {
cairo_surface_t *image;
#if HAVE_GDK_PIXBUF
GError *err = NULL;
diff --git a/include/background-image.h b/include/background-image.h
index 5ecd4c53..67c27c84 100644
--- a/include/background-image.h
+++ b/include/background-image.h
@@ -2,6 +2,6 @@
#define _SWAY_BACKGROUND_IMAGE_H
#include <cairo.h>
-cairo_surface_t *load_background_image(const char *path);
+cairo_surface_t *load_image(const char *path);
#endif
diff --git a/swaybar/tray/item.c b/swaybar/tray/item.c
index 1f18b8bb..c7938a35 100644
--- a/swaybar/tray/item.c
+++ b/swaybar/tray/item.c
@@ -431,7 +431,7 @@ static void reload_sni(struct swaybar_sni *sni, char *icon_theme,
list_free(icon_search_paths);
if (icon_path) {
cairo_surface_destroy(sni->icon);
- sni->icon = load_background_image(icon_path);
+ sni->icon = load_image(icon_path);
free(icon_path);
return;
}