fixed MacOSX-Qt5 build

This commit is contained in:
Luis Ángel San Martín
2014-07-19 09:47:10 +02:00
parent 8e6347801b
commit 5e7c2f72b5
3 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@ QModelIndex ActionsGroupsModel::index(int row, int column, const QModelIndex &pa
if (!hasIndex(row, column, parent))
return QModelIndex();
return createIndex(row, column, &groups.at(row).getActions());
return createIndex(row, column);
}
QVariant ActionsGroupsModel::data(const QModelIndex &index, int role) const