| 5232 | } |
| 5233 | |
| 5234 | IGFD_C_API bool IGFD_RemovePlace(ImGuiFileDialog* vContextPtr, const char* vGroupName, const char* vPlaceName) { |
| 5235 | if (vContextPtr != nullptr) { |
| 5236 | auto group_ptr = vContextPtr->GetPlacesGroupPtr(vGroupName); |
| 5237 | if (group_ptr != nullptr) { |
| 5238 | return group_ptr->RemovePlace(vPlaceName); |
| 5239 | } |
| 5240 | } |
| 5241 | return false; |
| 5242 | } |
| 5243 | |
| 5244 | #endif |
| 5245 |
nothing calls this directly
no test coverage detected