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-mime-actions.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-mime-actions.c')
-rw-r--r-- | libcaja-private/caja-mime-actions.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libcaja-private/caja-mime-actions.c b/libcaja-private/caja-mime-actions.c index 4668e0ac..bbcc6f4d 100644 --- a/libcaja-private/caja-mime-actions.c +++ b/libcaja-private/caja-mime-actions.c @@ -44,6 +44,8 @@ #include "caja-debug-log.h" #include "caja-open-with-dialog.h" +#include <src/glibcompat.h> /* for g_list_free_full */ + typedef enum { ACTIVATION_ACTION_LAUNCH_DESKTOP_FILE, @@ -230,8 +232,7 @@ static void application_launch_parameters_free (ApplicationLaunchParameters *parameters) { g_object_unref (parameters->application); - g_list_foreach(parameters->uris, (GFunc) g_free, NULL); - g_list_free(parameters->uris); + g_list_free_full (parameters->uris, g_free); g_free (parameters); } @@ -513,8 +514,7 @@ caja_mime_has_any_applications_for_file (CajaFile *file) if (apps) { result = TRUE; - g_list_foreach(apps, (GFunc) g_object_unref, NULL); - g_list_free(apps); + g_list_free_full (apps, g_object_unref); } else { @@ -735,8 +735,7 @@ trash_or_delete_files (GtkWindow *parent_window, caja_file_operations_trash_or_delete (locations, parent_window, NULL, NULL); - g_list_foreach(locations, (GFunc) g_object_unref, NULL); - g_list_free(locations); + g_list_free_full (locations, g_object_unref); } static void |