| 5297 | } |
| 5298 | |
| 5299 | IGFD_C_API bool IGFD_RemovePlace(ImGuiFileDialog* vContextPtr, const char* vGroupName, const char* vPlaceName) { |
| 5300 | if (vContextPtr != nullptr) { |
| 5301 | auto group_ptr = vContextPtr->GetPlacesGroupPtr(vGroupName); |
| 5302 | if (group_ptr != nullptr) { |
| 5303 | return group_ptr->RemovePlace(vPlaceName); |
| 5304 | } |
| 5305 | } |
| 5306 | return false; |
| 5307 | } |
| 5308 | |
| 5309 | #endif |
| 5310 |
nothing calls this directly
no test coverage detected