diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-10 11:47:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 11:47:19 +0200 |
commit | 95db658672583eb620aa264055115481925dfc3c (patch) | |
tree | 37f07c92da528f1bc816650205adced976b840a6 | |
parent | 9ab08f06c89cb4ace09aaad1e3f33588835cf631 (diff) | |
parent | 406c2790e3a899b7e2645fb08edf069236fe0e79 (diff) |
Merge pull request #37699 from lupoDharkael/committing-typo
Replace is_commiting_action with is_committing_action
-rw-r--r-- | core/undo_redo.cpp | 3 | ||||
-rw-r--r-- | doc/classes/UndoRedo.xml | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/core/undo_redo.cpp b/core/undo_redo.cpp index 8bd5a4915d..62ad3e9f98 100644 --- a/core/undo_redo.cpp +++ b/core/undo_redo.cpp @@ -511,8 +511,7 @@ void UndoRedo::_bind_methods() { ClassDB::bind_method(D_METHOD("create_action", "name", "merge_mode"), &UndoRedo::create_action, DEFVAL(MERGE_DISABLE)); ClassDB::bind_method(D_METHOD("commit_action"), &UndoRedo::commit_action); - // FIXME: Typo in "commiting", fix in 4.0 when breaking compat. - ClassDB::bind_method(D_METHOD("is_commiting_action"), &UndoRedo::is_committing_action); + ClassDB::bind_method(D_METHOD("is_committing_action"), &UndoRedo::is_committing_action); { MethodInfo mi; diff --git a/doc/classes/UndoRedo.xml b/doc/classes/UndoRedo.xml index 766ebf7e32..2cc3e974e2 100644 --- a/doc/classes/UndoRedo.xml +++ b/doc/classes/UndoRedo.xml @@ -155,7 +155,7 @@ Returns [code]true[/code] if an "undo" action is available. </description> </method> - <method name="is_commiting_action" qualifiers="const"> + <method name="is_committing_action" qualifiers="const"> <return type="bool"> </return> <description> |