mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-25 12:05:54 +00:00
History: cleanup unused lookupPaymentID function
This commit is contained in:
parent
bc1131ce41
commit
14b1476786
5 changed files with 0 additions and 24 deletions
|
@ -1696,16 +1696,6 @@ Rectangle {
|
||||||
+ translationManager.emptyString;
|
+ translationManager.emptyString;
|
||||||
}
|
}
|
||||||
|
|
||||||
function lookupPaymentID(paymentId) {
|
|
||||||
if (!addressBookModel)
|
|
||||||
return ""
|
|
||||||
var idx = addressBookModel.lookupPaymentID(paymentId)
|
|
||||||
if (idx < 0)
|
|
||||||
return ""
|
|
||||||
idx = addressBookModel.index(idx, 0)
|
|
||||||
return addressBookModel.data(idx, AddressBookModel.AddressBookDescriptionRole)
|
|
||||||
}
|
|
||||||
|
|
||||||
FileDialog {
|
FileDialog {
|
||||||
id: writeCSVFileDialog
|
id: writeCSVFileDialog
|
||||||
title: qsTr("Please choose a folder") + translationManager.emptyString
|
title: qsTr("Please choose a folder") + translationManager.emptyString
|
||||||
|
|
|
@ -121,13 +121,6 @@ quint64 AddressBook::count() const
|
||||||
return m_rows.size();
|
return m_rows.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
int AddressBook::lookupPaymentID(const QString &payment_id) const
|
|
||||||
{
|
|
||||||
QReadLocker locker(&m_lock);
|
|
||||||
|
|
||||||
return m_addressBookImpl->lookupPaymentID(payment_id.toStdString());
|
|
||||||
}
|
|
||||||
|
|
||||||
QString AddressBook::getDescription(const QString &address) const
|
QString AddressBook::getDescription(const QString &address) const
|
||||||
{
|
{
|
||||||
QReadLocker locker(&m_lock);
|
QReadLocker locker(&m_lock);
|
||||||
|
|
|
@ -51,7 +51,6 @@ public:
|
||||||
quint64 count() const;
|
quint64 count() const;
|
||||||
Q_INVOKABLE QString errorString() const;
|
Q_INVOKABLE QString errorString() const;
|
||||||
Q_INVOKABLE int errorCode() const;
|
Q_INVOKABLE int errorCode() const;
|
||||||
Q_INVOKABLE int lookupPaymentID(const QString &payment_id) const;
|
|
||||||
Q_INVOKABLE QString getDescription(const QString &address) const;
|
Q_INVOKABLE QString getDescription(const QString &address) const;
|
||||||
|
|
||||||
enum ErrorCode {
|
enum ErrorCode {
|
||||||
|
|
|
@ -87,11 +87,6 @@ bool AddressBookModel::deleteRow(int row)
|
||||||
return m_addressBook->deleteRow(row);
|
return m_addressBook->deleteRow(row);
|
||||||
}
|
}
|
||||||
|
|
||||||
int AddressBookModel::lookupPaymentID(const QString &payment_id) const
|
|
||||||
{
|
|
||||||
return m_addressBook->lookupPaymentID(payment_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
QHash<int, QByteArray> AddressBookModel::roleNames() const
|
QHash<int, QByteArray> AddressBookModel::roleNames() const
|
||||||
{
|
{
|
||||||
QHash<int, QByteArray> roleNames = QAbstractListModel::roleNames();
|
QHash<int, QByteArray> roleNames = QAbstractListModel::roleNames();
|
||||||
|
|
|
@ -52,7 +52,6 @@ public:
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||||
Q_INVOKABLE bool deleteRow(int row);
|
Q_INVOKABLE bool deleteRow(int row);
|
||||||
Q_INVOKABLE int lookupPaymentID(const QString &payment_id) const;
|
|
||||||
virtual QHash<int, QByteArray> roleNames() const override;
|
virtual QHash<int, QByteArray> roleNames() const override;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
Loading…
Reference in a new issue