diff --git a/Plugins/Cog/Source/CogEngine/Private/CogEngineWindow_Inspector.cpp b/Plugins/Cog/Source/CogEngine/Private/CogEngineWindow_Inspector.cpp index bf858cd..25e1290 100644 --- a/Plugins/Cog/Source/CogEngine/Private/CogEngineWindow_Inspector.cpp +++ b/Plugins/Cog/Source/CogEngine/Private/CogEngineWindow_Inspector.cpp @@ -511,7 +511,7 @@ bool FCogEngineWindow_Inspector::RenderProperty(const FProperty* Property, uint8 ImGui::TableNextColumn(); ImGui::Text("DisplayName:"); ImGui::TableNextColumn(); - ImGui::Text(TCHAR_TO_UTF8(*Property->GetDisplayNameText().ToString())); + ImGui::Text("%s", TCHAR_TO_UTF8(*Property->GetDisplayNameText().ToString())); #endif // WITH_EDITORONLY_DATA ImGui::TableNextRow(); @@ -533,7 +533,7 @@ bool FCogEngineWindow_Inspector::RenderProperty(const FProperty* Property, uint8 ImGui::TableNextColumn(); if (Property->HasMetaData("Tooltip")) { - ImGui::Text(TCHAR_TO_UTF8(*Property->GetToolTipText(false).ToString())); + ImGui::Text("%s", TCHAR_TO_UTF8(*Property->GetToolTipText(false).ToString())); } #endif // WITH_EDITORONLY_DATA @@ -551,7 +551,7 @@ bool FCogEngineWindow_Inspector::RenderProperty(const FProperty* Property, uint8 ImGui::BeginTooltip(); ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); - ImGui::Text(TCHAR_TO_UTF8(*Property->GetToolTipText(false).ToString())); + ImGui::Text("%s", TCHAR_TO_UTF8(*Property->GetToolTipText(false).ToString())); ImGui::Text("Details [CTRL]"); ImGui::PopTextWrapPos(); ImGui::EndTooltip(); diff --git a/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_NetImGui.h b/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_NetImGui.h index 2802f0b..5858604 100644 --- a/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_NetImGui.h +++ b/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_NetImGui.h @@ -3,7 +3,7 @@ #include "CoreMinimal.h" #include "CogCommonConfig.h" #include "CogWindow.h" -#include "CogEngineWindow_NetImgui.generated.h" +#include "CogEngineWindow_NetImGui.generated.h" class UCogEngineWindowConfig_NetImgui; diff --git a/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_OutputLog.h b/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_OutputLog.h index 0febcf3..9e563ea 100644 --- a/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_OutputLog.h +++ b/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_OutputLog.h @@ -11,7 +11,7 @@ class UCogEngineConfig_OutputLog; class FCogEngineWindow_OutputLog; //-------------------------------------------------------------------------------------------------------------------------- -class FCogLogOutputDevice : public FOutputDevice +class COGENGINE_API FCogLogOutputDevice : public FOutputDevice { public: friend class FCogEngineWindow_OutputLog; diff --git a/Plugins/Cog/Source/CogImgui/CogImgui.Build.cs b/Plugins/Cog/Source/CogImgui/CogImgui.Build.cs index c4edd41..c4823d1 100644 --- a/Plugins/Cog/Source/CogImgui/CogImgui.Build.cs +++ b/Plugins/Cog/Source/CogImgui/CogImgui.Build.cs @@ -39,7 +39,7 @@ public CogImgui(ReadOnlyTargetRules Target) : base(Target) }); } - PublicDefinitions.Add("IMGUI_USER_CONFIG=\"CogImGuiConfig.h\""); + PublicDefinitions.Add("IMGUI_USER_CONFIG=\"CogImguiConfig.h\""); PublicDefinitions.Add("IMGUI_API=COGIMGUI_API"); PublicDefinitions.Add("IMPLOT_API=COGIMGUI_API"); }