summaryrefslogtreecommitdiffstats
path: root/editor/rename_dialog.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-11-24 18:28:49 +0100
committerkobewi <kobewi4e@gmail.com>2022-11-24 18:56:22 +0100
commit8a3d2f4e0c452a1d333f45cf106d2397f4c8b873 (patch)
tree6187c39943c792b2b3277f06b92e2d46ee1fa45c /editor/rename_dialog.h
parentcd3d6e63a630414297cb580bcc891a0aa9f25127 (diff)
downloadredot-engine-8a3d2f4e0c452a1d333f45cf106d2397f4c8b873.tar.gz
Cleanup remaining EditorUndoRedoManager usages
Diffstat (limited to 'editor/rename_dialog.h')
-rw-r--r--editor/rename_dialog.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/editor/rename_dialog.h b/editor/rename_dialog.h
index dac73b13b8..2a3fda59a4 100644
--- a/editor/rename_dialog.h
+++ b/editor/rename_dialog.h
@@ -42,8 +42,6 @@
#include "scene/gui/spin_box.h"
#include "scene/gui/tab_container.h"
-class EditorUndoRedoManager;
-
class RenameDialog : public ConfirmationDialog {
GDCLASS(RenameDialog, ConfirmationDialog);
@@ -64,7 +62,6 @@ class RenameDialog : public ConfirmationDialog {
static void _error_handler(void *p_self, const char *p_func, const char *p_file, int p_line, const char *p_error, const char *p_errorexp, bool p_editor_notify, ErrorHandlerType p_type);
SceneTreeEditor *scene_tree_editor = nullptr;
- Ref<EditorUndoRedoManager> undo_redo;
int global_count = 0;
LineEdit *lne_search = nullptr;
@@ -110,8 +107,7 @@ public:
void reset();
void rename();
- RenameDialog(SceneTreeEditor *p_scene_tree_editor, Ref<EditorUndoRedoManager> p_undo_redo = Ref<EditorUndoRedoManager>());
- ~RenameDialog() {}
+ RenameDialog(SceneTreeEditor *p_scene_tree_editor);
};
#endif // MODULE_REGEX_ENABLED