]> err.no Git - libchamplain/commitdiff
Replace champlain_map_source_factory_get_list by champlain_map_source_factory_dup_list
authorEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Sat, 13 Jun 2009 13:51:00 +0000 (15:51 +0200)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Sun, 14 Jun 2009 15:11:16 +0000 (11:11 -0400)
bindings/perl/Champlain/xs/ChamplainMapSourceFactory.xs

index 61b1a0be39d18fbee85ace4f3911e43b43867f43..ef73cf74d5c19846d38833880c5d84fa48a2f8c5 100644 (file)
@@ -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);