[poincare] Node->isDefined becomes !Node->isUninitialized

This commit is contained in:
Léa Saviot
2018-08-14 16:40:12 +02:00
parent a3d09bde1c
commit 71c807b565
35 changed files with 113 additions and 118 deletions

View File

@@ -23,7 +23,7 @@ KDCoordinate ExpressionModelListController::expressionRowHeight(int j) {
return Metric::StoreRowHeight;
}
ExpressionModel * m = modelStore()->modelAtIndex(j);
if (!m->layoutRef().isDefined()) {
if (m->layoutRef().isUninitialized()) {
return Metric::StoreRowHeight;
}
KDCoordinate modelSize = m->layoutRef().layoutSize().height();