Fix missing return

This commit is contained in:
Martchus 2018-03-14 00:39:46 +01:00
parent 575d0cabdb
commit 24eadaf516
1 changed files with 1 additions and 0 deletions

View File

@ -283,6 +283,7 @@ bool FieldModel::removeRows(int row, int count, const QModelIndex &parent)
beginRemoveRows(parent, row, row + count - 1);
m_fields->erase(m_fields->begin() + row, m_fields->begin() + row + count);
endRemoveRows();
return true;
}
bool FieldModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)