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:
authorDalai Felinto <dfelinto@gmail.com>2017-11-14 23:39:40 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-11-14 23:41:20 +0300
commit7549b10212ba761a4f19be224b1d95df993ca4ef (patch)
tree8900908b54941e425a59faf84a4baa264bfe6c99 /source/blender/blenkernel/BKE_collection.h
parent3546636870f9cd81319c606b5d0bac9afeff3d70 (diff)
Cleanup: order from a-z structs in BKE_collection.h and BKE_layer.h
Diffstat (limited to 'source/blender/blenkernel/BKE_collection.h')
-rw-r--r--source/blender/blenkernel/BKE_collection.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_collection.h b/source/blender/blenkernel/BKE_collection.h
index 0adac4500f8..52985d3ec56 100644
--- a/source/blender/blenkernel/BKE_collection.h
+++ b/source/blender/blenkernel/BKE_collection.h
@@ -35,12 +35,12 @@
extern "C" {
#endif
-struct BLI_Iterator;
-struct SceneCollection;
-struct Object;
struct Base;
+struct BLI_Iterator;
struct Main;
+struct Object;
struct Scene;
+struct SceneCollection;
struct SceneCollection *BKE_collection_add(struct Scene *scene, struct SceneCollection *sc_parent, const char *name);
bool BKE_collection_remove(struct Scene *scene, struct SceneCollection *sc);