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>2019-02-07 02:09:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-07 02:09:56 +0300
commita5869c367e660b52f0b90f89b2405944db434156 (patch)
treebad9750b4972d80ce3854735a8c2749d869585b9 /source/blender/blenkernel/intern/undo_system.c
parent9df460203517a791107c6da816ab21ace803d5f4 (diff)
Cleanup: remove unnecessary undo function
Diffstat (limited to 'source/blender/blenkernel/intern/undo_system.c')
-rw-r--r--source/blender/blenkernel/intern/undo_system.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/blender/blenkernel/intern/undo_system.c b/source/blender/blenkernel/intern/undo_system.c
index 158c165655a..46a69b01d8e 100644
--- a/source/blender/blenkernel/intern/undo_system.c
+++ b/source/blender/blenkernel/intern/undo_system.c
@@ -767,18 +767,6 @@ bool BKE_undosys_step_load_data(UndoStack *ustack, bContext *C, UndoStep *us)
return ok;
}
-bool BKE_undosys_step_undo_compat_only(UndoStack *ustack, bContext *C, int step)
-{
- if (step == 0) {
- return BKE_undosys_step_undo_with_data(ustack, C, ustack->step_active);
- }
- else if (step == 1) {
- return BKE_undosys_step_undo(ustack, C);
- }
- else {
- return BKE_undosys_step_redo(ustack, C);
- }
-}
/**
* Similar to #WM_operatortype_append
*/