| 58 | } |
| 59 | |
| 60 | void View::setFallbackLayout(std::shared_ptr<Layout> layout) |
| 61 | { |
| 62 | auto oldLayout = _layout.setFallback(std::move(layout)); |
| 63 | |
| 64 | updateLayout(oldLayout, _layout.get()); |
| 65 | } |
| 66 | |
| 67 | void View::updateLayout(const std::shared_ptr<Layout> &oldLayout, const std::shared_ptr<Layout> &newLayout) |
| 68 | { |
no test coverage detected