diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-11-12 13:42:58 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-11-12 13:42:58 +0100 |
commit | 88c43807378da430cf6f71871cb326e4a992a615 (patch) | |
tree | 0c9f0be7e2e5677a26bc2c314d914c848e086d9f /editor/rename_dialog.h | |
parent | a54bd6e868a3cbaf8c9033815a798a3f5c1107ef (diff) | |
download | redot-engine-88c43807378da430cf6f71871cb326e4a992a615.tar.gz |
Modules: Make sure to include modules_enabled.gen.h where needed
Diffstat (limited to 'editor/rename_dialog.h')
-rw-r--r-- | editor/rename_dialog.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/rename_dialog.h b/editor/rename_dialog.h index 4db3ef6740..f383877eb2 100644 --- a/editor/rename_dialog.h +++ b/editor/rename_dialog.h @@ -31,17 +31,16 @@ #ifndef RENAME_DIALOG_H #define RENAME_DIALOG_H -#include "modules/modules_enabled.gen.h" +#include "modules/modules_enabled.gen.h" // For regex. #ifdef MODULE_REGEX_ENABLED +#include "core/object/undo_redo.h" +#include "editor/scene_tree_editor.h" #include "scene/gui/check_box.h" #include "scene/gui/dialogs.h" #include "scene/gui/option_button.h" #include "scene/gui/spin_box.h" -#include "core/object/undo_redo.h" -#include "editor/scene_tree_editor.h" - /** @author Blazej Floch */ |