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:
authorAntony Riakiotakis <kalast@gmail.com>2014-05-07 03:59:23 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-05-07 03:59:23 +0400
commit2e07109febc31f86763a53d08bae66f7fe421619 (patch)
tree466734fcaf2e60e2eb816fe2b4084920c84e4555 /source/blender/editors/util
parent02b1dbef8cff6427bae9dc9e0da6d502a07d035c (diff)
Code cleanup: naming.
Prepend BKE_ to the functions moved in blenkernel for recent bug fix.
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/ed_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/util/ed_util.c b/source/blender/editors/util/ed_util.c
index 887cc430f69..2580836cad9 100644
--- a/source/blender/editors/util/ed_util.c
+++ b/source/blender/editors/util/ed_util.c
@@ -158,12 +158,12 @@ void ED_editors_flush_edits(const bContext *C, bool for_render)
if (for_render) {
/* flush changes from dynamic topology sculpt */
- sculptsession_bm_to_me_for_render(obact);
+ BKE_sculptsession_bm_to_me_for_render(obact);
}
else {
/* Set reorder=false so that saving the file doesn't reorder
* the BMesh's elements */
- sculptsession_bm_to_me(obact, false);
+ BKE_sculptsession_bm_to_me(obact, false);
}
}
}