| 48 | } |
| 49 | |
| 50 | void TextBoxCanvasComponent::save(cereal::PortableBinaryOutputArchive& a) const { |
| 51 | a(d.editing, d.p1, d.p2, textBox->get_rich_text_data(), *cursor); |
| 52 | } |
| 53 | |
| 54 | void TextBoxCanvasComponent::load(cereal::PortableBinaryInputArchive& a) { |
| 55 | TextData richText; |
nothing calls this directly
no test coverage detected