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>2020-03-18 14:28:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-18 14:28:54 +0300
commit406026abba130be90e1a9824e4fb0a5d8eedd759 (patch)
tree3e8c9d361a91f2a02a0c4d1172817b1555b69827 /source/blender/editors/undo/memfile_undo.c
parentc3651adf8914048ecd2668937c3ed4414a6707bd (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/undo/memfile_undo.c')
-rw-r--r--source/blender/editors/undo/memfile_undo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/undo/memfile_undo.c b/source/blender/editors/undo/memfile_undo.c
index 312edab91b1..1ac4c031c8e 100644
--- a/source/blender/editors/undo/memfile_undo.c
+++ b/source/blender/editors/undo/memfile_undo.c
@@ -156,7 +156,7 @@ static void memfile_undosys_step_decode(struct bContext *C,
* The only time we should have to force a complete redo is when current step is tagged as a
* redo barrier.
* If previous step was not a memfile one should not matter here, current data in old bmain
- * should still always be valid for unchanged dtat-blocks. */
+ * should still always be valid for unchanged datat-blocks. */
if (us_p->use_old_bmain_data == false) {
use_old_bmain_data = false;
}
@@ -164,9 +164,9 @@ static void memfile_undosys_step_decode(struct bContext *C,
else {
/* Undo case.
* Here we do not care whether current step is an undo barrier, since we are comming from 'the
- * future' we can still re-use old data. However, if *next* undo step (i.e. the one immédiately
- * in the future, the one we are comming from) is a barrier, then we have to force a complete
- * undo.
+ * future' we can still re-use old data. However, if *next* undo step
+ * (i.e. the one immediately in the future, the one we are coming from)
+ * is a barrier, then we have to force a complete undo.
* Note that non-memfile undo steps **should** not be an issue anymore, since we handle
* fine-grained update flags now.
*/