diff --git a/art/paperback/carousel/text.cxx b/art/paperback/carousel/text.cxx index 09e1eb7..bd367ac 100644 --- a/art/paperback/carousel/text.cxx +++ b/art/paperback/carousel/text.cxx @@ -27,12 +27,14 @@ namespace Art::Paperback::Carousel Text:: Text(Text const& other) - : _data{other._data} + : _convention{other._convention}, + _data{other._data} {} Text:: Text(Text&& other) - : _data{std::move(other._data)} + : _convention{other._convention}, + _data{std::move(other._data)} {} Text::