From eaa0e8f5dd2d012455943b8f9cd55dbba8c630a7 Mon Sep 17 00:00:00 2001 From: Emmanuel Rodriguez Date: Sat, 13 Jun 2009 15:51:00 +0200 Subject: [PATCH] Replace champlain_map_source_factory_get_list by champlain_map_source_factory_dup_list --- bindings/perl/Champlain/xs/ChamplainMapSourceFactory.xs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/perl/Champlain/xs/ChamplainMapSourceFactory.xs b/bindings/perl/Champlain/xs/ChamplainMapSourceFactory.xs index 61b1a0b..ef73cf7 100644 --- a/bindings/perl/Champlain/xs/ChamplainMapSourceFactory.xs +++ b/bindings/perl/Champlain/xs/ChamplainMapSourceFactory.xs @@ -53,13 +53,13 @@ champlain_map_source_factory_dup_default (class) void -champlain_map_source_factory_get_list (ChamplainMapSourceFactory *factory) +champlain_map_source_factory_dup_list (ChamplainMapSourceFactory *factory) PREINIT: GSList *list = NULL; GSList *item = NULL; PPCODE: - list = champlain_map_source_factory_get_list(factory); + list = champlain_map_source_factory_dup_list(factory); for (item = list; item != NULL; item = item->next) { ChamplainMapSourceDesc *desc = CHAMPLAIN_MAP_SOURCE_DESC(item->data); -- 2.39.5