MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / IGFD_RemovePlace

Function IGFD_RemovePlace

ImGuiFileDialog.cpp:5234–5242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5232}
5233
5234IGFD_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

Callers

nothing calls this directly

Calls 2

GetPlacesGroupPtrMethod · 0.80
RemovePlaceMethod · 0.80

Tested by

no test coverage detected