MCPcopy Create free account
hub / github.com/Aegel5/SimpleSwitcher / ClearIniSettings

Method ClearIniSettings

imgui_tiny_app/imgui/imgui.cpp:16225–16232  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

16223
16224// Clear all settings (windows, tables, docking etc.)
16225void ImGui::ClearIniSettings()
16226{
16227 ImGuiContext& g = *GImGui;
16228 g.SettingsIniData.clear();
16229 for (ImGuiSettingsHandler& handler : g.SettingsHandlers)
16230 if (handler.ClearAllFn != NULL)
16231 handler.ClearAllFn(&g, &handler);
16232}
16233
16234void ImGui::LoadIniSettingsFromDisk(const char* ini_filename)
16235{

Callers

nothing calls this directly

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected