diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-06-27 20:18:41 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-06-27 20:18:41 -0500 |
commit | ba0a7294d054c48723834138c605473c64f12ff4 (patch) | |
tree | 91ebf9abacb8a2dbae8dbaa659f05934f3623c68 /src/wallet/api/subaddress.h | |
parent | Merge pull request #3994 (diff) | |
parent | Wallet API: add some missing override keyword (diff) | |
download | monero-ba0a7294d054c48723834138c605473c64f12ff4.tar.xz |
Merge pull request #4000
4510f41 Wallet API: add some missing override keyword (stoffu)
Diffstat (limited to 'src/wallet/api/subaddress.h')
-rw-r--r-- | src/wallet/api/subaddress.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wallet/api/subaddress.h b/src/wallet/api/subaddress.h index 3f9e37ac8..f3db7d97b 100644 --- a/src/wallet/api/subaddress.h +++ b/src/wallet/api/subaddress.h @@ -40,10 +40,10 @@ public: ~SubaddressImpl(); // Fetches addresses from Wallet2 - void refresh(uint32_t accountIndex); - std::vector<SubaddressRow*> getAll() const; - void addRow(uint32_t accountIndex, const std::string &label); - void setLabel(uint32_t accountIndex, uint32_t addressIndex, const std::string &label); + void refresh(uint32_t accountIndex) override; + std::vector<SubaddressRow*> getAll() const override; + void addRow(uint32_t accountIndex, const std::string &label) override; + void setLabel(uint32_t accountIndex, uint32_t addressIndex, const std::string &label) override; private: void clearRows(); |