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>2018-01-23 12:22:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-23 15:37:55 +0300
commit41945fcfe4c4ec1cd21e642f4aaa9a5b1f150b1b (patch)
tree0c61dbf4948ab4e3a3bc26304d9ea336492ebf76 /source/blender/makesrna
parent4a3ddd8a7a5bc1851f832869310b5340a6b41d46 (diff)
Cleanup: some ED_view3d functions used uppercase D
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index ebbebb32974..f3a7cd485d9 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -1431,7 +1431,7 @@ static void rna_BackgroundImage_size_set(PointerRNA *ptr, float value)
static BGpic *rna_BackgroundImage_new(View3D *v3d)
{
- BGpic *bgpic = ED_view3D_background_image_new(v3d);
+ BGpic *bgpic = ED_view3d_background_image_new(v3d);
WM_main_add_notifier(NC_SPACE | ND_SPACE_VIEW3D, v3d);
@@ -1445,7 +1445,7 @@ static void rna_BackgroundImage_remove(View3D *v3d, ReportList *reports, Pointer
BKE_report(reports, RPT_ERROR, "Background image cannot be removed");
}
- ED_view3D_background_image_remove(v3d, bgpic);
+ ED_view3d_background_image_remove(v3d, bgpic);
RNA_POINTER_INVALIDATE(bgpic_ptr);
WM_main_add_notifier(NC_SPACE | ND_SPACE_VIEW3D, v3d);
@@ -1453,7 +1453,7 @@ static void rna_BackgroundImage_remove(View3D *v3d, ReportList *reports, Pointer
static void rna_BackgroundImage_clear(View3D *v3d)
{
- ED_view3D_background_image_clear(v3d);
+ ED_view3d_background_image_clear(v3d);
WM_main_add_notifier(NC_SPACE | ND_SPACE_VIEW3D, v3d);
}