Code cleanup: naming.

Prepend BKE_ to the functions moved in blenkernel for recent bug fix.
This commit is contained in:
2014-05-07 02:59:23 +03:00
parent 02b1dbef8c
commit 2e07109feb
12 changed files with 66 additions and 66 deletions

View File

@@ -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);
}
}
}