From: Emmanuel Rodriguez Date: Sat, 13 Jun 2009 13:51:00 +0000 (+0200) Subject: Replace champlain_map_source_factory_get_list by champlain_map_source_factory_dup_list X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaa0e8f5dd2d012455943b8f9cd55dbba8c630a7;p=libchamplain Replace champlain_map_source_factory_get_list by champlain_map_source_factory_dup_list --- 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);