Internals: ImPool: Renaming.

This commit is contained in:
omar
2019-11-07 15:01:19 +01:00
parent 28f1d60de1
commit a337e219b6
2 changed files with 14 additions and 14 deletions

View File

@ -9830,9 +9830,9 @@ void ImGui::ShowMetricsWindow(bool* p_open)
ImGui::TreePop();
}
if (ImGui::TreeNode("TabBars", "Tab Bars (%d)", g.TabBars.Data.Size))
if (ImGui::TreeNode("TabBars", "Tab Bars (%d)", g.TabBars.GetSize()))
{
for (int n = 0; n < g.TabBars.Data.Size; n++)
for (int n = 0; n < g.TabBars.GetSize(); n++)
Funcs::NodeTabBar(g.TabBars.GetByIndex(n));
ImGui::TreePop();
}
@ -9845,7 +9845,7 @@ void ImGui::ShowMetricsWindow(bool* p_open)
#endif
#if 0
if (ImGui::TreeNode("Tables", "Tables (%d)", g.Tables.Data.Size))
if (ImGui::TreeNode("Tables", "Tables (%d)", g.Tables.GetSize()))
{
ImGui::TreePop();
}