mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Adapt to setSupportedDragActions() begin removed.
Models have a virtual supportedDragActions() now.
This commit is contained in:
parent
5a745da07b
commit
e3cde7b55e
5 changed files with 12 additions and 2 deletions
|
@ -29,7 +29,6 @@ EntryModel::EntryModel(QObject* parent)
|
|||
: QAbstractTableModel(parent)
|
||||
, m_group(Q_NULLPTR)
|
||||
{
|
||||
setSupportedDragActions(Qt::MoveAction | Qt::CopyAction);
|
||||
}
|
||||
|
||||
Entry* EntryModel::entryFromIndex(const QModelIndex& index) const
|
||||
|
@ -191,6 +190,11 @@ Qt::DropActions EntryModel::supportedDropActions() const
|
|||
return 0;
|
||||
}
|
||||
|
||||
Qt::DropActions EntryModel::supportedDragActions() const
|
||||
{
|
||||
return (Qt::MoveAction | Qt::CopyAction);
|
||||
}
|
||||
|
||||
Qt::ItemFlags EntryModel::flags(const QModelIndex& modelIndex) const
|
||||
{
|
||||
if (!modelIndex.isValid()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue