| 18270 | } |
| 18271 | |
| 18272 | void ImGui::DockContextQueueNotifyRemovedNode(ImGuiContext* ctx, ImGuiDockNode* node) |
| 18273 | { |
| 18274 | ImGuiDockContext* dc = &ctx->DockContext; |
| 18275 | for (ImGuiDockRequest& req : dc->Requests) |
| 18276 | if (req.DockTargetNode == node) |
| 18277 | req.Type = ImGuiDockRequestType_None; |
| 18278 | } |
| 18279 | |
| 18280 | void ImGui::DockContextProcessDock(ImGuiContext* ctx, ImGuiDockRequest* req) |
| 18281 | { |
nothing calls this directly
no outgoing calls
no test coverage detected