Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(71)

Unified Diff: source/blender/blenloader/intern/writefile.c

Issue 6854125: Rewrite of list template system (Closed) Base URL: https://svn.blender.org/svnroot/bf-blender/trunk/blender/
Patch Set: This commit refactors how template_list works. It introduces a new (py-extendable and registrable) Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/blender/blenloader/intern/writefile.c
===================================================================
--- source/blender/blenloader/intern/writefile.c (révision 53009)
+++ source/blender/blenloader/intern/writefile.c (copie de travail)
@@ -2395,6 +2395,7 @@
for (sa= sc->areabase.first; sa; sa= sa->next) {
SpaceLink *sl;
Panel *pa;
+ uiList *uilst;
ARegion *ar;
writestruct(wd, DATA, "ScrArea", 1, sa);
@@ -2404,6 +2405,9 @@
for (pa= ar->panels.first; pa; pa= pa->next)
writestruct(wd, DATA, "Panel", 1, pa);
+
+ for (uilst = ar->uiLists.first; uilst; uilst = uilst->next)
+ writestruct(wd, DATA, "uiList", 1, uilst);
}
sl= sa->spacedata.first;

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b