aboutsummaryrefslogtreecommitdiff
path: root/src/lib/glade.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/glade.c')
-rw-r--r--src/lib/glade.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/glade.c b/src/lib/glade.c
index 386a676b..3853ea93 100644
--- a/src/lib/glade.c
+++ b/src/lib/glade.c
@@ -28,6 +28,20 @@
28 28
29 29
30/** 30/**
31 * Initialize GTK search path for icons.
32 */
33void
34GNUNET_GTK_set_icon_search_path ()
35{
36 char *buf;
37
38 buf = GNUNET_GTK_installation_get_path (GNUNET_OS_IPK_ICONDIR);
39 gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), buf);
40 GNUNET_free (buf);
41}
42
43
44/**
31 * Get the name of the directory where all of our package 45 * Get the name of the directory where all of our package
32 * data is stored ($PREFIX/share/) 46 * data is stored ($PREFIX/share/)
33 * 47 *