aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-11 18:58:59 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-11 18:58:59 +0800
commitb11e11837e1df1be3e38fa92f3208d82fe75acd2 (patch)
treea71346fb4a2d7380e3317e3d2535228a4cfee6db /e-util
parent7902f5be99255afa3cd81dffe9f6ea75b2a57708 (diff)
downloadgsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.tar
gsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.tar.gz
gsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.tar.bz2
gsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.tar.lz
gsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.tar.xz
gsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.tar.zst
gsoc2013-evolution-b11e11837e1df1be3e38fa92f3208d82fe75acd2.zip
Add App specific themable icons.
svn path=/trunk/; revision=33509
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-icon-factory.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 49055d64e3..a850b53f0d 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-11 Srinivasa Ragavan <sragavan@novell.com>
+
+ * e-icon-factory.c: (e_icon_factory_init): Add support for themable
+ application support icons.
+
2007-04-20 Matthew Barnes <mbarnes@redhat.com>
* e-print.c:
diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c
index 96cd9d5ce2..36008613be 100644
--- a/e-util/e-icon-factory.c
+++ b/e-util/e-icon-factory.c
@@ -208,7 +208,8 @@ e_icon_factory_init (void)
(GDestroyNotify) icon_free);
icon_theme = gtk_icon_theme_get_default ();
-
+ gtk_icon_theme_append_search_path (icon_theme,
+ EVOLUTION_DATADIR G_DIR_SEPARATOR_S "icons");
g_signal_connect (
icon_theme, "changed",
G_CALLBACK (icon_theme_changed_cb), NULL);