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:
authorBastien Montagne <b.mont29@gmail.com>2020-02-10 20:05:19 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-10 20:05:19 +0300
commite75e29ee478592742defb80d6d992173f4a635df (patch)
treea43d9b93efe2a8838e45509c25a7c988c1cc8c22 /source/blender/blenkernel/intern/undo_system.c
parentc6e28f65139d6e7536789d9bf1895e7f7058ac92 (diff)
Cleanup: Rename `BKE_library_override_` functions to `BKE_lib_override_library_`
pqrt of T72604.
Diffstat (limited to 'source/blender/blenkernel/intern/undo_system.c')
-rw-r--r--source/blender/blenkernel/intern/undo_system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/undo_system.c b/source/blender/blenkernel/intern/undo_system.c
index 8fb099ac953..74b322aeab7 100644
--- a/source/blender/blenkernel/intern/undo_system.c
+++ b/source/blender/blenkernel/intern/undo_system.c
@@ -504,8 +504,8 @@ bool BKE_undosys_step_push_with_type(UndoStack *ustack,
/* Might not be final place for this to be called - probably only want to call it from some
* undo handlers, not all of them? */
- if (BKE_override_library_is_enabled()) {
- BKE_main_override_library_operations_create(G_MAIN, false);
+ if (BKE_lib_override_library_is_enabled()) {
+ BKE_lib_override_library_main_operations_create(G_MAIN, false);
}
/* Remove all undos after (also when 'ustack->step_active == NULL'). */