| 3498 | } |
| 3499 | |
| 3500 | ImGuiWindow::~ImGuiWindow() |
| 3501 | { |
| 3502 | IM_ASSERT(DrawList == &DrawListInst); |
| 3503 | IM_DELETE(Name); |
| 3504 | ColumnsStorage.clear_destruct(); |
| 3505 | } |
| 3506 | |
| 3507 | ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) |
| 3508 | { |
nothing calls this directly
no test coverage detected