| 5537 | } |
| 5538 | |
| 5539 | bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) |
| 5540 | { |
| 5541 | ImGuiWindow* window = GetCurrentWindow(); |
| 5542 | return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags); |
| 5543 | } |
| 5544 | |
| 5545 | bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) |
| 5546 | { |
nothing calls this directly
no test coverage detected