| 6881 | } |
| 6882 | |
| 6883 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 6884 | { |
| 6885 | ImGuiID id = ImHashStr(name); |
| 6886 | return FindWindowByID(id); |
| 6887 | } |
| 6888 | |
| 6889 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 6890 | { |
nothing calls this directly
no test coverage detected