Fix uninitialized m_empty_text StringView in LineEditor

This commit is contained in:
Maxime Coste 2018-03-28 20:48:50 +11:00
parent fccb1bc3db
commit ebc700ee17

View File

@ -543,7 +543,7 @@ private:
CharCount m_display_pos = 0;
String m_line;
StringView m_empty_text;
StringView m_empty_text = {};
};
class Menu : public InputMode