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 /libcaja-private/caja-query.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 'libcaja-private/caja-query.c')
-rw-r--r-- | libcaja-private/caja-query.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libcaja-private/caja-query.c b/libcaja-private/caja-query.c index 9c6044af..df4a8753 100644 --- a/libcaja-private/caja-query.c +++ b/libcaja-private/caja-query.c @@ -30,6 +30,8 @@ #include <glib/gi18n.h> #include <libcaja-private/caja-file-utilities.h> +#include <src/glibcompat.h> /* for g_list_free_full */ + struct CajaQueryDetails { char *text; @@ -118,10 +120,7 @@ caja_query_get_mime_types (CajaQuery *query) void caja_query_set_mime_types (CajaQuery *query, GList *mime_types) { - g_list_foreach(query->details->mime_types, (GFunc) g_free, NULL); - g_list_free(query->details->mime_types); - g_list_foreach(query->details->mime_types, (GFunc) g_free, NULL); - g_list_free(query->details->mime_types); + g_list_free_full (query->details->mime_types, g_free); query->details->mime_types = eel_g_str_list_copy (mime_types); } |