Replace all uses of core::list with std::list (#12313)

This commit is contained in:
paradust7
2022-05-21 15:11:59 -07:00
committed by GitHub
parent 2742fef458
commit 9f338f5a56
16 changed files with 36 additions and 148 deletions

View File

@@ -212,7 +212,7 @@ class GUIFormSpecMenu : public GUIModalMenu
m_lockscreensize = basescreensize;
}
void removeChildren();
void removeTooltip();
void setInitialFocus();
void setFocus(const std::string &elementname)
@@ -467,7 +467,7 @@ class GUIFormSpecMenu : public GUIModalMenu
* types were drawn before others.
* This function sorts the elements in the old order for backwards compatibility.
*/
void legacySortElements(core::list<IGUIElement *>::Iterator from);
void legacySortElements(std::list<IGUIElement *>::iterator from);
int m_btn_height;
gui::IGUIFont *m_font = nullptr;