| 19698 | } |
| 19699 | |
| 19700 | static void ImGui::DockNodeAddTabBar(ImGuiDockNode* node) |
| 19701 | { |
| 19702 | IM_ASSERT(node->TabBar == NULL); |
| 19703 | node->TabBar = IM_NEW(ImGuiTabBar); |
| 19704 | } |
| 19705 | |
| 19706 | static void ImGui::DockNodeRemoveTabBar(ImGuiDockNode* node) |
| 19707 | { |
nothing calls this directly
no outgoing calls
no test coverage detected