mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 08:27:25 -04:00
Addressbook: Fix size_t build error
This commit is contained in:
@@ -50,7 +50,8 @@ QVariant AddressBookModel::data(const QModelIndex &index, int role) const
|
||||
result = QString::fromStdString(ar->getPaymentId());
|
||||
break;
|
||||
case AddressBookRowIdRole:
|
||||
result = ar->getRowId();
|
||||
// Qt doesnt support size_t overload type casting
|
||||
result.setValue(ar->getRowId());
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user