MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / ClearIniSettings

Method ClearIniSettings

include/imgui/imgui.cpp:15563–15570  ·  view source on GitHub ↗

Clear all settings (windows, tables, docking etc.)

Source from the content-addressed store, hash-verified

15561
15562// Clear all settings (windows, tables, docking etc.)
15563void ImGui::ClearIniSettings()
15564{
15565 ImGuiContext& g = *GImGui;
15566 g.SettingsIniData.clear();
15567 for (ImGuiSettingsHandler& handler : g.SettingsHandlers)
15568 if (handler.ClearAllFn != NULL)
15569 handler.ClearAllFn(&g, &handler);
15570}
15571
15572void ImGui::LoadIniSettingsFromDisk(const char* ini_filename)
15573{

Callers

nothing calls this directly

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected