several conversions to smart pointers

This commit is contained in:
itsmattkc
2019-02-16 21:21:04 -08:00
parent e063a5ba8f
commit 5207a0511f
104 changed files with 972 additions and 945 deletions
+2 -2
View File
@@ -99,8 +99,8 @@ QModelIndex ProjectModel::index(int row, int column, const QModelIndex &parent)
return QModelIndex();
}
QModelIndex ProjectModel::create_index(int arow, int acolumn, void* aid) {
return createIndex(arow, acolumn, aid);
QModelIndex ProjectModel::create_index(int arow, int acolumn, void* adata) {
return createIndex(arow, acolumn, adata);
}
QModelIndex ProjectModel::parent(const QModelIndex &index) const {