diff options
author | Stefano Karapetsas <[email protected]> | 2012-11-23 03:09:17 -0800 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-11-23 03:09:17 -0800 |
commit | f6f5c1bb6d060aff5fb334017c640733675c2ae2 (patch) | |
tree | cde88ea4e11a2f0809da857feaefa6824d4ba8fa /src/caja-emblem-sidebar.c | |
parent | cbfe84ee50d01e523472a8e086add01245fad6bb (diff) | |
parent | ae06676815e24a27549e0c79a74bc81c77822554 (diff) | |
download | caja-f6f5c1bb6d060aff5fb334017c640733675c2ae2.tar.bz2 caja-f6f5c1bb6d060aff5fb334017c640733675c2ae2.tar.xz |
Merge pull request #56 from jasmineaura/develop
[all] add and use glibcompat.h for glib-2.27.2 forward-compat
Diffstat (limited to 'src/caja-emblem-sidebar.c')
-rw-r--r-- | src/caja-emblem-sidebar.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/caja-emblem-sidebar.c b/src/caja-emblem-sidebar.c index 1de86f9b..b1e6ec58 100644 --- a/src/caja-emblem-sidebar.c +++ b/src/caja-emblem-sidebar.c @@ -47,6 +47,8 @@ #include <libcaja-private/caja-module.h> #include <libcaja-private/caja-signaller.h> +#include "glibcompat.h" /* for g_list_free_full */ + struct CajaEmblemSidebarDetails { CajaWindowInfo *window; @@ -1006,8 +1008,7 @@ caja_emblem_sidebar_populate (CajaEmblemSidebar *emblem_sidebar) widgets = g_list_prepend (widgets, emblem_widget); } - g_list_foreach(icons, (GFunc) g_free, NULL); - g_list_free(icons); + g_list_free_full (icons, g_free); /* sort the emblems by display name */ widgets = g_list_sort (widgets, emblem_widget_sort_func); |