aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-icon-factory.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-01-25 05:06:23 +0800
committerTor Lillqvist <tml@src.gnome.org>2008-01-25 05:06:23 +0800
commitf52c571c51e38f8642e1dd749783dad85e745a10 (patch)
tree00ec753e2526ed44429e0849b0ef4773b09b75dc /e-util/e-icon-factory.c
parent304bff669c35d5d4e4652dff1f37ff2711af9e36 (diff)
downloadgsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.tar
gsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.tar.gz
gsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.tar.bz2
gsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.tar.lz
gsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.tar.xz
gsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.tar.zst
gsoc2013-evolution-f52c571c51e38f8642e1dd749783dad85e745a10.zip
Construct pathname under EVOLUTION_DATADIR at run-time because
2008-01-24 Tor Lillqvist <tml@novell.com> * e-icon-factory.c (e_icon_factory_init): Construct pathname under EVOLUTION_DATADIR at run-time because EVOLUTION_DATADIR is a function call on Windows. svn path=/trunk/; revision=34885
Diffstat (limited to 'e-util/e-icon-factory.c')
-rw-r--r--e-util/e-icon-factory.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c
index 5a604786dd..556c52ebb5 100644
--- a/e-util/e-icon-factory.c
+++ b/e-util/e-icon-factory.c
@@ -206,6 +206,8 @@ icon_theme_changed_cb (GtkIconTheme *icon_theme, gpointer user_data)
void
e_icon_factory_init (void)
{
+ gchar *path;
+
if (name_to_icon != NULL)
return;
@@ -215,10 +217,13 @@ 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
- "evolution" G_DIR_SEPARATOR_S
- BASE_VERSION G_DIR_SEPARATOR_S "icons");
+ path = g_build_filename (EVOLUTION_DATADIR,
+ "evolution",
+ BASE_VERSION,
+ "icons",
+ NULL);
+ gtk_icon_theme_append_search_path (icon_theme, path);
+ g_free (path);
g_signal_connect (
icon_theme, "changed",
G_CALLBACK (icon_theme_changed_cb), NULL);