| 69 | } |
| 70 | |
| 71 | void TextElement::SetText(std::wstring newText) |
| 72 | { |
| 73 | text = std::move(newText); |
| 74 | textDirty = true; |
| 75 | } |
| 76 | |
| 77 | std::shared_ptr<TextElement> TextElement::Make(std::wstring text, std::vector<std::string> classes) |
| 78 | { |
no outgoing calls
no test coverage detected