This commit is contained in:
Martin Brodbeck 2018-07-17 20:17:46 +02:00
parent e766b3ff95
commit c1ca54a1d1
2 changed files with 7 additions and 1 deletions

View file

@ -21,6 +21,9 @@ QVariant SellerModel::data(const QModelIndex& index, int role) const
if (role != Qt::DisplayRole)
return QVariant();
if (marketplace_->getSellers().size() == 0)
return QVariant();
Seller* seller = marketplace_->getSellers().at(index.row()).get();
/* if (seller->getState() == Seller::State::DELETE)