bugfix
This commit is contained in:
parent
e766b3ff95
commit
c1ca54a1d1
2 changed files with 7 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue