add igGetIDRange to overloads table

This commit is contained in:
sonoro1234
2018-10-14 10:09:04 +02:00
parent 84a9656889
commit 51f02dca4d
8 changed files with 10 additions and 7 deletions

View File

@@ -477,7 +477,7 @@ CIMGUI_API ImGuiID igGetIDStr(const char* str_id)
{
return ImGui::GetID(str_id);
}
CIMGUI_API ImGuiID igGetIDStrStr(const char* str_id_begin,const char* str_id_end)
CIMGUI_API ImGuiID igGetIDRange(const char* str_id_begin,const char* str_id_end)
{
return ImGui::GetID(str_id_begin,str_id_end);
}