You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Misc cleanup of header includes
Was looking for misuse of module headers without checking that the module is actually enabled and got carried away...
This commit is contained in:
@@ -35,12 +35,18 @@
|
||||
#include "editor_scale.h"
|
||||
#include "editor_settings.h"
|
||||
#include "editor_themes.h"
|
||||
#include "modules/regex/regex.h"
|
||||
#include "plugins/script_editor_plugin.h"
|
||||
#include "scene/gui/control.h"
|
||||
#include "scene/gui/label.h"
|
||||
#include "scene/gui/tab_container.h"
|
||||
|
||||
#include "modules/modules_enabled.gen.h"
|
||||
#ifdef MODULE_REGEX_ENABLED
|
||||
#include "modules/regex/regex.h"
|
||||
#else
|
||||
#error "Can't build editor rename dialog without RegEx module."
|
||||
#endif
|
||||
|
||||
RenameDialog::RenameDialog(SceneTreeEditor *p_scene_tree_editor, UndoRedo *p_undo_redo) {
|
||||
scene_tree_editor = p_scene_tree_editor;
|
||||
undo_redo = p_undo_redo;
|
||||
|
||||
Reference in New Issue
Block a user