mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
Fix return value when deleting an addressbook entry
This commit is contained in:
parent
1107daab98
commit
5e4bc36fc3
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