diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-09-21 11:46:46 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-09-21 11:46:46 +0200 |
commit | 2c770ee3fe040186602aeadd62a5d256724e1105 (patch) | |
tree | 607adefef4e97c3b914f2d96aa2f22f14431e8fc /src | |
parent | 6a9b9b7817d1ed3354eace900f5e63abd4c46a78 (diff) | |
download | uca-2c770ee3fe040186602aeadd62a5d256724e1105.tar.gz uca-2c770ee3fe040186602aeadd62a5d256724e1105.tar.bz2 uca-2c770ee3fe040186602aeadd62a5d256724e1105.tar.xz uca-2c770ee3fe040186602aeadd62a5d256724e1105.zip |
Rename g_list_free_full to list_free_full
This got really implemented with GLib 2.28, so the names clash.
Diffstat (limited to 'src')
-rw-r--r-- | src/uca-plugin-manager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uca-plugin-manager.c b/src/uca-plugin-manager.c index fdfb59f..5678e83 100644 --- a/src/uca-plugin-manager.c +++ b/src/uca-plugin-manager.c @@ -136,7 +136,7 @@ transform_camera_module_path_to_name (gchar *path, GList **result) } static void -g_list_free_full (GList *list) +list_free_full (GList *list) { g_list_foreach (list, (GFunc) g_free, NULL); g_list_free (list); @@ -164,7 +164,7 @@ uca_plugin_manager_get_available_cameras (UcaPluginManager *manager) camera_paths = scan_search_paths (priv->search_paths); g_list_foreach (camera_paths, (GFunc) transform_camera_module_path_to_name, &camera_names); - g_list_free_full (camera_paths); + list_free_full (camera_paths); return camera_names; } @@ -190,7 +190,7 @@ find_camera_module_path (GList *search_paths, const gchar *name) g_free (basename); } - g_list_free_full (paths); + list_free_full (paths); return result; } |