From a82e3dec0459b84b4f4ae04823daff54601dc26b Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Thu, 24 Apr 2025 12:25:45 -0400 Subject: [PATCH] Fixed compilation warning --- Editor/{ => Source/Editor/Misc}/AnimatedValue.cpp | 0 Editor/{ => Source/Editor/Misc}/AnimatedValue.h | 0 Editor/Source/Editor/Windows/EditorInterface.cpp | 2 +- .../Editor/Windows/SceneEditor/Widgets/FileBrowserWidget.h | 2 +- .../Windows/SceneEditor/Widgets/SelectionPropertyWidget.h | 2 +- .../Editor/Windows/SceneEditor/Widgets/ViewportWidget.h | 2 +- Nuake/Source/Nuake/Modules/QuakeModule/Module.lua | 4 ++-- 7 files changed, 6 insertions(+), 6 deletions(-) rename Editor/{ => Source/Editor/Misc}/AnimatedValue.cpp (100%) rename Editor/{ => Source/Editor/Misc}/AnimatedValue.h (100%) diff --git a/Editor/AnimatedValue.cpp b/Editor/Source/Editor/Misc/AnimatedValue.cpp similarity index 100% rename from Editor/AnimatedValue.cpp rename to Editor/Source/Editor/Misc/AnimatedValue.cpp diff --git a/Editor/AnimatedValue.h b/Editor/Source/Editor/Misc/AnimatedValue.h similarity index 100% rename from Editor/AnimatedValue.h rename to Editor/Source/Editor/Misc/AnimatedValue.h diff --git a/Editor/Source/Editor/Windows/EditorInterface.cpp b/Editor/Source/Editor/Windows/EditorInterface.cpp index 17dc4c50..bb479f4b 100644 --- a/Editor/Source/Editor/Windows/EditorInterface.cpp +++ b/Editor/Source/Editor/Windows/EditorInterface.cpp @@ -65,7 +65,7 @@ #include "../Events/EditorRequests.h" #include "../../../../Nuake/Thirdparty/glfw/include/GLFW/glfw3.h" -#include "../../../AnimatedValue.h" +#include "../misc/AnimatedValue.h" namespace Nuake { diff --git a/Editor/Source/Editor/Windows/SceneEditor/Widgets/FileBrowserWidget.h b/Editor/Source/Editor/Windows/SceneEditor/Widgets/FileBrowserWidget.h index 9bcd28b5..0bf04b1d 100644 --- a/Editor/Source/Editor/Windows/SceneEditor/Widgets/FileBrowserWidget.h +++ b/Editor/Source/Editor/Windows/SceneEditor/Widgets/FileBrowserWidget.h @@ -6,7 +6,7 @@ #include "IEditorWidget.h" -#include "../../../../../AnimatedValue.h" +#include "../../../misc/AnimatedValue.h" namespace Nuake { diff --git a/Editor/Source/Editor/Windows/SceneEditor/Widgets/SelectionPropertyWidget.h b/Editor/Source/Editor/Windows/SceneEditor/Widgets/SelectionPropertyWidget.h index 4b4212b4..03d63c1a 100644 --- a/Editor/Source/Editor/Windows/SceneEditor/Widgets/SelectionPropertyWidget.h +++ b/Editor/Source/Editor/Windows/SceneEditor/Widgets/SelectionPropertyWidget.h @@ -2,7 +2,7 @@ #include "IEditorWidget.h" #include "../../EditorSelectionPanel.h" -#include "../../../../../AnimatedValue.h" +#include "../../../misc/AnimatedValue.h" class EditorContext; diff --git a/Editor/Source/Editor/Windows/SceneEditor/Widgets/ViewportWidget.h b/Editor/Source/Editor/Windows/SceneEditor/Widgets/ViewportWidget.h index a169bfab..db8c3bef 100644 --- a/Editor/Source/Editor/Windows/SceneEditor/Widgets/ViewportWidget.h +++ b/Editor/Source/Editor/Windows/SceneEditor/Widgets/ViewportWidget.h @@ -3,7 +3,7 @@ #include "IEditorWidget.h" #include -#include "../../../../../AnimatedValue.h" +#include "../../../misc/AnimatedValue.h" class EditorContext; diff --git a/Nuake/Source/Nuake/Modules/QuakeModule/Module.lua b/Nuake/Source/Nuake/Modules/QuakeModule/Module.lua index d995f9e3..520d1845 100644 --- a/Nuake/Source/Nuake/Modules/QuakeModule/Module.lua +++ b/Nuake/Source/Nuake/Modules/QuakeModule/Module.lua @@ -5,7 +5,7 @@ return { -- Place all your sources here sources = { "QuakeModule.cpp", - "QuakBaker.h", - "QuakBaker.cpp", + "QuakeBaker.h", + "QuakeBaker.cpp", } } \ No newline at end of file