diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-07-24 08:07:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 08:07:32 +0200 |
commit | 374cffaa11f380c867c831a74d4579adf15c8a5a (patch) | |
tree | be85163dfd42240a5dee577f12dbcb078692b1f3 /doc/base | |
parent | 574ec97b8b5cb5afc6bc39f7f9a065fed8ba58c1 (diff) | |
parent | 2777f81d290e4b9a17afedc100a5b83666e04495 (diff) |
Merge pull request #9764 from Noshyaar/pr-fix2
Add object type hint for docs
Diffstat (limited to 'doc/base')
-rw-r--r-- | doc/base/classes.xml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 3c8da424a5..ba5f0bba94 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -49285,7 +49285,7 @@ Helper to manage UndoRedo in the editor or custom tools. </brief_description> <description> - Helper to maange UndoRedo in the editor or custom tools. It works by storing calls to functions in both 'do' an 'undo' lists. + Helper to manage UndoRedo in the editor or custom tools. It works by storing calls to functions in both 'do' an 'undo' lists. Common behavior is to create an action, then add do/undo calls to functions or property changes, then committing the action. </description> <methods> @@ -49338,13 +49338,12 @@ <argument index="0" name="object" type="Object"> </argument> <description> - Add an 'undo' reference that will be erased if the 'undo' history is lost. This is useful mostly for nodes rmoved with the 'do' call (not the 'undo' call!). + Add an 'undo' reference that will be erased if the 'undo' history is lost. This is useful mostly for nodes removed with the 'do' call (not the 'undo' call!). </description> </method> <method name="clear_history"> <description> - Clear the undo/redo history and associated - references. + Clear the undo/redo history and associated references. </description> </method> <method name="commit_action"> @@ -49358,8 +49357,7 @@ <argument index="1" name="merge_mode" type="int" default="0"> </argument> <description> - Create a new action. After this is called, do all your calls to [method add_do_method], [method add_undo_method], [method add_do_property] and [method add_un -do_property]. + Create a new action. After this is called, do all your calls to [method add_do_method], [method add_undo_method], [method add_do_property] and [method add_undo_property]. </description> </method> <method name="get_current_action_name" qualifiers="const"> |