mirror of
https://github.com/monero-project/monero.git
synced 2026-01-14 05:46:37 -08:00
AddressBook: use unsigned type for row ID's
Fixes build warnings and may also prevent future headaches.
This commit is contained in:
@@ -94,7 +94,7 @@ void AddressBookImpl::refresh()
|
||||
|
||||
}
|
||||
|
||||
bool AddressBookImpl::deleteRow(int rowId)
|
||||
bool AddressBookImpl::deleteRow(std::size_t rowId)
|
||||
{
|
||||
LOG_PRINT_L2("Deleting address book row " << rowId);
|
||||
bool r = m_wallet->m_wallet->delete_address_book_row(rowId);
|
||||
|
||||
Reference in New Issue
Block a user