xastrix

Results 4 comments of xastrix

thank you for keeping informed, you project really **good**

include detours = profit!

just use std::call_once ``` #include std::once_flag m_set_text_flag = {}; std::string your_text = "123"; TextEditor m_code_editor; static void TextEditorUpdate(std::string data) { m_code_editor.SetText(data); } std::call_once(m_set_text_flag, TextEditorUpdate, your_text); ```