[apps/calculation] HistoryViewCell does not need to hold layouts

This commit is contained in:
Ruben Dashyan
2019-04-05 11:52:05 +02:00
committed by Émilie Feral
parent fcbfc575b1
commit 8bfb3f7a6c
4 changed files with 13 additions and 19 deletions

View File

@@ -17,6 +17,10 @@ ScrollableExpressionView::ScrollableExpressionView(Responder * parentResponder)
);
}
Poincare::Layout ScrollableExpressionView::layout() const {
return m_expressionView.layout();
}
void ScrollableExpressionView::setLayout(Layout layout) {
m_expressionView.setLayout(layout);
}