Adapt to setSupportedDragActions() begin removed.

Models have a virtual supportedDragActions() now.
This commit is contained in:
Felix Geyer 2015-07-22 17:03:36 +02:00
parent 5a745da07b
commit e3cde7b55e
5 changed files with 12 additions and 2 deletions

View file

@ -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()) {