diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-10-18 15:10:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 15:10:45 +0200 |
commit | 0cee3021927bc246a42c589cc28199a4c51f2909 (patch) | |
tree | 23ed62bf28835d2486d2d52088b8a8b6073ab842 | |
parent | 8f2b7aecee64a2445bfec2221a415a3a92e30211 (diff) | |
parent | 09356c1f674bb668a503c4d9f361a5b4c26e9f5b (diff) |
Merge pull request #42873 from Yetizone/HeaderGuardUpdate
node_3d_editor_plugin.h: Update header guard
-rw-r--r-- | editor/plugins/node_3d_editor_plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/node_3d_editor_plugin.h b/editor/plugins/node_3d_editor_plugin.h index 4f627b1d0c..e4a384449b 100644 --- a/editor/plugins/node_3d_editor_plugin.h +++ b/editor/plugins/node_3d_editor_plugin.h @@ -28,8 +28,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef SPATIAL_EDITOR_PLUGIN_H -#define SPATIAL_EDITOR_PLUGIN_H +#ifndef NODE_3D_EDITOR_PLUGIN_H +#define NODE_3D_EDITOR_PLUGIN_H #include "editor/editor_node.h" #include "editor/editor_plugin.h" @@ -890,4 +890,4 @@ public: virtual ~EditorNode3DGizmoPlugin(); }; -#endif +#endif // NODE_3D_EDITOR_PLUGIN_H |