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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-07 10:38:41 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-07 10:38:41 +0400
commitc7b20e79cdd055cb9f42d39764f868f0c48e60a2 (patch)
tree255a1e8756515270c5e87b272bc29c002fdbe758 /source/blender/makesrna/intern/rna_main_api.c
parentd881f9225c8bd8ddcf7005a7fb1afcdf6c8c071e (diff)
Style cleanup: rename BKE_metaball* to BKE_mball -- mball is more commonly used term in Blender
Diffstat (limited to 'source/blender/makesrna/intern/rna_main_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_main_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_main_api.c b/source/blender/makesrna/intern/rna_main_api.c
index 0451d7c239c..76cd8279beb 100644
--- a/source/blender/makesrna/intern/rna_main_api.c
+++ b/source/blender/makesrna/intern/rna_main_api.c
@@ -329,7 +329,7 @@ void rna_Main_curves_remove(Main *bmain, ReportList *reports, struct Curve *cu)
MetaBall *rna_Main_metaballs_new(Main *UNUSED(bmain), const char *name)
{
- MetaBall *mb = BKE_metaball_add(name);
+ MetaBall *mb = BKE_mball_add(name);
id_us_min(&mb->id);
return mb;
}