aboutsummaryrefslogtreecommitdiff
path: root/src/libwalletqt
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-10-08 01:24:18 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-10-10 00:19:39 +0300
commit9b09e83ba0056364f99fa7a9e02a4181ac7d343d (patch)
treedf2148efd71fa6af49f86a95ef0e4a95117a4694 /src/libwalletqt
parente3cea8582f1f860ba2a25bbfb174fbcbcd306c9a (diff)
downloadmonzero-gui-9b09e83ba0056364f99fa7a9e02a4181ac7d343d.tar.gz
monzero-gui-9b09e83ba0056364f99fa7a9e02a4181ac7d343d.tar.xz
monzero-gui-9b09e83ba0056364f99fa7a9e02a4181ac7d343d.zip
History: filtering by paymentId and date
Diffstat (limited to 'src/libwalletqt')
-rw-r--r--src/libwalletqt/Wallet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libwalletqt/Wallet.h b/src/libwalletqt/Wallet.h
index f9bca5a3..d794550a 100644
--- a/src/libwalletqt/Wallet.h
+++ b/src/libwalletqt/Wallet.h
@@ -30,7 +30,7 @@ class Wallet : public QObject
Q_PROPERTY(quint64 unlockedBalance READ unlockedBalance)
Q_PROPERTY(TransactionHistory * history READ history)
Q_PROPERTY(QString paymentId READ paymentId WRITE setPaymentId)
- Q_PROPERTY(TransactionHistorySortFilterModel * historyModel READ historyModel)
+ Q_PROPERTY(TransactionHistorySortFilterModel * historyModel READ historyModel NOTIFY historyModelChanged)
public:
@@ -151,6 +151,7 @@ signals:
void moneySpent(const QString &txId, quint64 amount);
void moneyReceived(const QString &txId, quint64 amount);
void newBlock(quint64 height);
+ void historyModelChanged() const;
private: