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>2019-02-27 03:14:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 03:14:41 +0300
commit918941483f7ec5fc6320d345c755e953b963c710 (patch)
tree5c855723ca55eff5a412076a95246c183a97f5b8 /source/blender/blenkernel/BKE_main.h
parent3051e2f4ae8fd3e72a43dd1e5d40893d0efec500 (diff)
Cleanup: Main struct member names
Rename latt to lattice and don't use plural names.
Diffstat (limited to 'source/blender/blenkernel/BKE_main.h')
-rw-r--r--source/blender/blenkernel/BKE_main.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_main.h b/source/blender/blenkernel/BKE_main.h
index 49755f6ec5e..48f9ac1a0da 100644
--- a/source/blender/blenkernel/BKE_main.h
+++ b/source/blender/blenkernel/BKE_main.h
@@ -93,7 +93,7 @@ typedef struct Main {
ListBase mat;
ListBase tex;
ListBase image;
- ListBase latt;
+ ListBase lattice;
ListBase light;
ListBase camera;
ListBase ipo; // XXX deprecated
@@ -111,15 +111,15 @@ typedef struct Main {
ListBase nodetree;
ListBase brush;
ListBase particle;
- ListBase palettes;
- ListBase paintcurves;
+ ListBase palette;
+ ListBase paintcurve;
ListBase wm;
ListBase gpencil;
ListBase movieclip;
ListBase mask;
ListBase linestyle;
- ListBase cachefiles;
- ListBase workspaces;
+ ListBase cachefile;
+ ListBase workspace;
/* Must be generated, used and freed by same code - never assume this is valid data unless you know
* when, who and how it was created.