diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-01-08 19:33:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 19:33:15 +0100 |
commit | 299e490cf4c9cfd72a9e4f53effaa41bf5e0d7df (patch) | |
tree | 1661970667f95cd42227545fa85bae1c764ea922 /core/undo_redo.h | |
parent | 05297d8b391c20d96f155b45347dd093fd6f26d9 (diff) | |
parent | 6e932c31081597b5aec845987c2a386ff28d5cc9 (diff) |
Merge pull request #15494 from brainsick/obsolete-undoredo-max-steps
obsolete UndoRedo max_steps; no users identified
Diffstat (limited to 'core/undo_redo.h')
-rw-r--r-- | core/undo_redo.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/undo_redo.h b/core/undo_redo.h index 5d7ab782d6..a373296b73 100644 --- a/core/undo_redo.h +++ b/core/undo_redo.h @@ -79,7 +79,6 @@ private: Vector<Action> actions; int current_action; int action_level; - int max_steps; MergeMode merge_mode; uint64_t version; @@ -115,9 +114,6 @@ public: String get_current_action_name() const; void clear_history(); - void set_max_steps(int p_max_steps); - int get_max_steps() const; - uint64_t get_version() const; void set_commit_notify_callback(CommitNotifyCallback p_callback, void *p_ud); |