| 5108 | } |
| 5109 | |
| 5110 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5111 | { |
| 5112 | ImGuiID id = ImHashStr(name); |
| 5113 | return FindWindowByID(id); |
| 5114 | } |
| 5115 | |
| 5116 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 5117 | { |
nothing calls this directly
no test coverage detected