Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-02-16 20:58:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-16 20:58:50 +0300
commit57308d838262f3d059b688aa31718af25fb21abb (patch)
tree2bb8a3119d1eeace4035d522adf8bb47cbf23fbd /source/blender/blenloader
parent24a0eececfaf35ffc19053266254b6d5799c87a1 (diff)
[#21102] Nonunique ID names in sequencer!
now uniqute names are ensured with recursive name checking on the scene
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 627e086ba94..5b17cc14ff2 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10120,7 +10120,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
{
seq=sce->ed->seqbasep->first;
while(seq) {
- seqUniqueName(sce->ed->seqbasep, seq);
+ seqbase_unique_name_recursive(&sce->ed->seqbase, seq);
seq=seq->next;
}
}