From b7acb1d488eab6c4869aa78a7f1d5c0ca6ac91ab Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 2 Oct 2012 17:55:24 -0300 Subject: [PATCH] st-texture-cache: Remove load_icon_name With the St.Icon bug fixed, we have removed the last use of load_icon_name. Celebration time! --- src/st/st-texture-cache.c | 35 ----------------------------------- src/st/st-texture-cache.h | 5 ----- 2 files changed, 40 deletions(-) diff --git a/src/st/st-texture-cache.c b/src/st/st-texture-cache.c index 211143254..0508006fd 100644 --- a/src/st/st-texture-cache.c +++ b/src/st/st-texture-cache.c @@ -1161,41 +1161,6 @@ st_texture_cache_load_sliced_image (StTextureCache *cache, return actor; } -/** - * st_texture_cache_load_icon_name: - * @cache: The texture cache instance - * @theme_node: (allow-none): a #StThemeNode - * @name: Name of a themed icon - * @size: Size of themed icon - * - * Load a themed icon into a texture. The colors used for symbolic - * icons are derived from @theme_node. - * - * Return Value: (transfer none): A new #ClutterTexture for the icon - */ -ClutterActor * -st_texture_cache_load_icon_name (StTextureCache *cache, - StThemeNode *theme_node, - const char *name, - gint size) -{ - ClutterActor *texture; - GIcon *themed; - - themed = g_themed_icon_new_with_default_fallbacks (name); - texture = load_gicon_with_colors (cache, themed, size, - theme_node ? st_theme_node_get_icon_colors (theme_node) : NULL); - g_object_unref (themed); - - if (texture == NULL) - { - texture = (ClutterActor *) create_default_texture (); - clutter_actor_set_size (texture, size, size); - } - - return texture; -} - /** * st_texture_cache_load_uri_async: * @cache: The texture cache instance diff --git a/src/st/st-texture-cache.h b/src/st/st-texture-cache.h index b5c563b84..ce9857dae 100644 --- a/src/st/st-texture-cache.h +++ b/src/st/st-texture-cache.h @@ -81,11 +81,6 @@ ClutterActor *st_texture_cache_bind_pixbuf_property (StTextureCache *cache, GObject *object, const char *property_name); -ClutterActor *st_texture_cache_load_icon_name (StTextureCache *cache, - StThemeNode *theme_node, - const char *name, - gint size); - ClutterActor *st_texture_cache_load_gicon (StTextureCache *cache, StThemeNode *theme_node, GIcon *icon,