Browse Source

Fixed IMGUI_DISABLE_TEST_WINDOWS #169

Fixed warning
ocornut 10 years ago
parent
commit
8f90238e53
1 changed files with 2 additions and 2 deletions
  1. 2 2
      imgui.cpp

+ 2 - 2
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