diff options
author | kobewi <kobewi4e@gmail.com> | 2022-08-29 12:10:32 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-11-02 17:51:58 +0100 |
commit | 15831e381bdfc1d086e1d7dca0d501e4c8dcf4d5 (patch) | |
tree | 59910e5dac3361ebb564ea464a0f0f219203221f /editor/groups_editor.h | |
parent | 604abb434f6740935be669dc8152856412d9ca73 (diff) | |
download | redot-engine-15831e381bdfc1d086e1d7dca0d501e4c8dcf4d5.tar.gz |
Unify usage of undo_redo in editor
Diffstat (limited to 'editor/groups_editor.h')
-rw-r--r-- | editor/groups_editor.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/editor/groups_editor.h b/editor/groups_editor.h index 5d012a3501..3900e0e28c 100644 --- a/editor/groups_editor.h +++ b/editor/groups_editor.h @@ -39,8 +39,6 @@ #include "scene/gui/popup.h" #include "scene/gui/tree.h" -class EditorUndoRedoManager; - class GroupDialog : public AcceptDialog { GDCLASS(GroupDialog, AcceptDialog); @@ -69,8 +67,6 @@ class GroupDialog : public AcceptDialog { String selected_group; - Ref<EditorUndoRedoManager> undo_redo; - void _group_selected(); void _remove_filter_changed(const String &p_filter); @@ -102,7 +98,6 @@ public: }; void edit(); - void set_undo_redo(Ref<EditorUndoRedoManager> p_undo_redo); GroupDialog(); }; @@ -120,8 +115,6 @@ class GroupsEditor : public VBoxContainer { Button *add = nullptr; Tree *tree = nullptr; - Ref<EditorUndoRedoManager> undo_redo; - String selected_group; void update_tree(); @@ -143,7 +136,6 @@ public: COPY_GROUP, }; - void set_undo_redo(Ref<EditorUndoRedoManager> p_undo_redo); void set_current(Node *p_node); GroupsEditor(); |