Skip to content

Commit

Permalink
Fixed extraneous static attribute. (#2105)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Sep 27, 2018
1 parent 9aae214 commit 3dcd552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8473,7 +8473,7 @@ void ImGui::MarkIniSettingsDirty(ImGuiWindow* window)
g.SettingsDirtyTimer = g.IO.IniSavingRate;
}

static ImGuiWindowSettings* ImGui::CreateNewWindowSettings(const char* name)
ImGuiWindowSettings* ImGui::CreateNewWindowSettings(const char* name)
{
ImGuiContext& g = *GImGui;
g.SettingsWindows.push_back(ImGuiWindowSettings());
Expand Down

0 comments on commit 3dcd552

Please sign in to comment.