From 8f90238e53465cee199e6f874bd48de4adfe96be Mon Sep 17 00:00:00 2001 From: ocornut Date: Sat, 21 Mar 2015 10:03:03 +0000 Subject: [PATCH] Fixed IMGUI_DISABLE_TEST_WINDOWS #169 Fixed warning --- imgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index fcd87e4c..9474a78d 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -8822,8 +8822,8 @@ static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y) #ifdef IMGUI_DISABLE_TEST_WINDOWS void ImGui::ShowUserGuide() {} -void ImGui::ShowStyleEditor() {} -void ImGui::ShowTestWindow() {} +void ImGui::ShowStyleEditor(ImGuiStyle*) {} +void ImGui::ShowTestWindow(bool*) {} #else