| 5963 | } |
| 5964 | |
| 5965 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5966 | { |
| 5967 | ImGuiID id = ImHashStr(name); |
| 5968 | return FindWindowByID(id); |
| 5969 | } |
| 5970 | |
| 5971 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 5972 | { |
nothing calls this directly
no test coverage detected