diff options
author | Cozz Lovan <cozzlovan@yahoo.com> | 2014-05-28 01:38:40 +0200 |
---|---|---|
committer | Cozz Lovan <cozzlovan@yahoo.com> | 2014-05-28 01:38:40 +0200 |
commit | b90711cabffa8bf83ddee98cfc179c0aef5732ef (patch) | |
tree | 1d9e9d473b93d31f04aa0c9f358b846112788544 /src/qt/transactiondesc.h | |
parent | bdc7f1a1018002bf83991160a270c84d04e1d213 (diff) |
[Qt] Fix Transaction details shows wrong To:
Diffstat (limited to 'src/qt/transactiondesc.h')
-rw-r--r-- | src/qt/transactiondesc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/transactiondesc.h b/src/qt/transactiondesc.h index 92d093b3eb..f5a1328a71 100644 --- a/src/qt/transactiondesc.h +++ b/src/qt/transactiondesc.h @@ -8,6 +8,7 @@ #include <QObject> #include <QString> +class TransactionRecord; class CWallet; class CWalletTx; @@ -18,7 +19,7 @@ class TransactionDesc: public QObject Q_OBJECT public: - static QString toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int unit); + static QString toHTML(CWallet *wallet, CWalletTx &wtx, TransactionRecord *rec, int unit); private: TransactionDesc() {} |