| 954 | } |
| 955 | |
| 956 | void FormattedTextBlock::SetText(StringView value) |
| 957 | { |
| 958 | if (_text == value) { |
| 959 | return; |
| 960 | } |
| 961 | _text = value; |
| 962 | _parts.clear(); |
| 963 | _background.clear(); |
| 964 | } |
| 965 | |
| 966 | void FormattedTextBlock::SetText(String&& value) |
| 967 | { |
no test coverage detected