From dc516f052e6ed93002ff8205efbf0621811e609d Mon Sep 17 00:00:00 2001 From: Mantisis <170255@supinfo.com> Date: Thu, 11 Apr 2019 21:06:41 +0200 Subject: [PATCH] Fix Name initialized after DrawEven in ImGuiContextProxy --- Source/ImGui/Private/ImGuiContextProxy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ImGui/Private/ImGuiContextProxy.h b/Source/ImGui/Private/ImGuiContextProxy.h index b91f16b..4ea7e1a 100644 --- a/Source/ImGui/Private/ImGuiContextProxy.h +++ b/Source/ImGui/Private/ImGuiContextProxy.h @@ -107,7 +107,7 @@ private: bool bIsDrawCalled = false; uint32 LastFrameNumber = 0; - + FString Name; FSimpleMulticastDelegate DrawEvent; FSimpleMulticastDelegate* SharedDrawEvent = nullptr; @@ -115,6 +115,6 @@ private: TArray DrawLists; - FString Name; + std::string IniFilename; };