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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/glade.c b/src/lib/glade.c
index 5b508a85..99a9910e 100644
--- a/src/lib/glade.c
+++ b/src/lib/glade.c
@@ -35,7 +35,7 @@ GNUNET_GTK_set_icon_search_path ()
35{ 35{
36 char *buf; 36 char *buf;
37 37
38 buf = GNUNET_GTK_installation_get_path (GNUNET_OS_IPK_ICONDIR); 38 buf = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_ICONDIR);
39 gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), buf); 39 gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), buf);
40 GNUNET_free (buf); 40 GNUNET_free (buf);
41} 41}
@@ -53,7 +53,7 @@ GNUNET_GTK_get_data_dir ()
53 static char *dd; 53 static char *dd;
54 54
55 if (dd == NULL) 55 if (dd == NULL)
56 dd = GNUNET_GTK_installation_get_path (GNUNET_OS_IPK_DATADIR); 56 dd = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_DATADIR);
57 return dd; 57 return dd;
58} 58}
59 59