aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-icon-factory.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2004-05-13 02:19:09 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-13 02:19:09 +0800
commit784359c0caef5b4a29d75c2179037c1f1698823e (patch)
tree6d86b3383cc5f227b11bfb1d2bf6fdc25fbbac6f /e-util/e-icon-factory.c
parent5910f5e48d28ccfd55cc23f478cce1a40a87d791 (diff)
downloadgsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.tar
gsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.tar.gz
gsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.tar.bz2
gsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.tar.lz
gsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.tar.xz
gsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.tar.zst
gsoc2013-evolution-784359c0caef5b4a29d75c2179037c1f1698823e.zip
*** empty log message ***
svn path=/trunk/; revision=25886
Diffstat (limited to 'e-util/e-icon-factory.c')
-rw-r--r--e-util/e-icon-factory.c31
1 files changed, 22 insertions, 9 deletions
diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c
index f59d5dba55..715a18295d 100644
--- a/e-util/e-icon-factory.c
+++ b/e-util/e-icon-factory.c
@@ -74,10 +74,6 @@ icon_new (const char *name, GdkPixbuf **pixbufs)
return icon;
}
-#if 0
-
-/* (This is not currently used since we never prune icons out of the
- cache.) */
static void
icon_free (Icon *icon)
{
@@ -93,8 +89,6 @@ icon_free (Icon *icon)
g_free (icon);
}
-#endif
-
/* Loading icons. */
static Icon *
@@ -151,10 +145,8 @@ pixel_size_to_icon_size (int pixel_size)
void
e_icon_factory_init (void)
{
- if (name_to_icon != NULL) {
- /* Already initialized. */
+ if (name_to_icon != NULL)
return;
- }
name_to_icon = g_hash_table_new (g_str_hash, g_str_equal);
icon_theme = gnome_icon_theme_new ();
@@ -162,6 +154,27 @@ e_icon_factory_init (void)
}
+static void
+icon_foreach_free (gpointer key, gpointer value, gpointer user_data)
+{
+ icon_free (value);
+}
+
+
+void
+e_icon_factory_shutdown (void)
+{
+ if (name_to_icon == NULL)
+ return;
+
+ g_hash_table_foreach (name_to_icon, (GHFunc) icon_foreach_free, NULL);
+ g_hash_table_destroy (name_to_icon);
+ g_object_unref (empty_pixbuf);
+ g_object_unref (icon_theme);
+ name_to_icon = NULL;
+}
+
+
/**
* e_icon_factory_get_icon_filename:
* @icon_name: name of the icon