| 6443 | } |
| 6444 | |
| 6445 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 6446 | { |
| 6447 | ImGuiID id = ImHashStr(name); |
| 6448 | return FindWindowByID(id); |
| 6449 | } |
| 6450 | |
| 6451 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 6452 | { |
nothing calls this directly
no test coverage detected