fix invalid include paths, compilation warnings, update README.md

This commit is contained in:
xiphon
2019-08-28 16:21:53 +00:00
parent 346e942e93
commit 3a33ddeecd
14 changed files with 26 additions and 28 deletions

View File

@@ -50,7 +50,7 @@ void AddressBookModel::endReset(){
endResetModel();
}
int AddressBookModel::rowCount(const QModelIndex &parent) const
int AddressBookModel::rowCount(const QModelIndex &) const
{
return m_addressBook->count();
}

View File

@@ -49,7 +49,7 @@ void SubaddressAccountModel::endReset(){
endResetModel();
}
int SubaddressAccountModel::rowCount(const QModelIndex &parent) const
int SubaddressAccountModel::rowCount(const QModelIndex &) const
{
return m_subaddressAccount->count();
}

View File

@@ -50,7 +50,7 @@ void SubaddressModel::endReset(){
endResetModel();
}
int SubaddressModel::rowCount(const QModelIndex &parent) const
int SubaddressModel::rowCount(const QModelIndex &) const
{
return m_subaddress->count();
}