mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 20:20:02 +00:00
Merge pull request #1529
5e4bc36Fix return value when deleting an addressbook entry (MaxXor)
This commit is contained in:
commit
f156acda72
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ QVariant AddressBookModel::data(const QModelIndex &index, int role) const
|
|||
|
||||
bool AddressBookModel::deleteRow(int row)
|
||||
{
|
||||
m_addressBook->deleteRow(row);
|
||||
return m_addressBook->deleteRow(row);
|
||||
}
|
||||
|
||||
int AddressBookModel::lookupPaymentID(const QString &payment_id) const
|
||||
|
|
Loading…
Reference in a new issue