Viewports: rename FindViewportByID() parameter for clarity.

This commit is contained in:
ocornut
2025-11-05 18:40:05 +01:00
parent 1d942eb6c9
commit ff45cb5929
2 changed files with 3 additions and 3 deletions

View File

@@ -16356,11 +16356,11 @@ ImGuiViewport* ImGui::GetMainViewport()
}
// FIXME: This leaks access to viewports not listed in PlatformIO.Viewports[]. Problematic? (#4236)
ImGuiViewport* ImGui::FindViewportByID(ImGuiID id)
ImGuiViewport* ImGui::FindViewportByID(ImGuiID viewport_id)
{
ImGuiContext& g = *GImGui;
for (ImGuiViewportP* viewport : g.Viewports)
if (viewport->ID == id)
if (viewport->ID == viewport_id)
return viewport;
return NULL;
}