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-02-06 18:21:48 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-02-06 20:06:47 +0300
commitf4ebb35a736c5e117642ecb3981c357208391241 (patch)
tree34f0c497585db2b82a2755c099f59c3898898509 /source/blender/editors/object/object_add.c
parent698c29aa4038c0f6f52723ec7065461bef203cf9 (diff)
Base refactor 3/4
Rename Base > BaseLegacy Note manual changes on: * deg_builder_nodes.h * rna_object.c * KX_Light.cpp Rna is still using Base directly for the ObjectBaseLegacy rna object. Depsgraph change will be removed later.
Diffstat (limited to 'source/blender/editors/object/object_add.c')
-rw-r--r--source/blender/editors/object/object_add.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 819b3b91b90..91cc95f79ae 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -832,7 +832,7 @@ static int empty_drop_named_image_invoke(bContext *C, wmOperator *op, const wmEv
{
Scene *scene = CTX_data_scene(C);
- Base *base = NULL;
+ BaseLegacy *base = NULL;
Image *ima = NULL;
Object *ob = NULL;
@@ -1615,7 +1615,7 @@ static int convert_exec(bContext *C, wmOperator *op)
/* don't forget multiple users! */
{
- Base *base;
+ BaseLegacy *base;
for (base = scene->base.first; base; base = base->next) {
ob = base->object;