ClassView: Fix a readability-simplify-boolean-expr

Change-Id: I6ad8009551f90dc2d2ab01698cc2d972cf47a79b
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Nikolai Kosjar
2019-10-31 15:26:54 +01:00
parent 2e95916e7c
commit d4797587b1

View File

@@ -333,11 +333,7 @@ bool ParserTreeItem::canFetchMore(QStandardItem *item) const
int storedChildren = item->rowCount(); int storedChildren = item->rowCount();
int internalChildren = d->symbolInformations.count(); int internalChildren = d->symbolInformations.count();
return storedChildren < internalChildren;
if (storedChildren < internalChildren)
return true;
return false;
} }
/*! /*!