mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add extra checks so we never return empty QMimeData from mimeData().
This commit is contained in:
parent
91868969ca
commit
4b3bee6400
2 changed files with 16 additions and 4 deletions
|
@ -227,8 +227,14 @@ QMimeData* EntryModel::mimeData(const QModelIndexList& indexes) const
|
|||
}
|
||||
}
|
||||
|
||||
data->setData(mimeTypes().first(), encoded);
|
||||
return data;
|
||||
if (seenEntries.isEmpty()) {
|
||||
delete data;
|
||||
return Q_NULLPTR;
|
||||
}
|
||||
else {
|
||||
data->setData(mimeTypes().first(), encoded);
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
void EntryModel::entryAboutToAdd(Entry* entry)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue