diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-11-18 15:47:20 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-11-23 12:33:35 +0100 |
| commit | 47db07537746940ee7dd0739a8c73e328837813f (patch) | |
| tree | 41078e611f150defe1fd793b1709d0019271e69b /src/qt/bantablemodel.h | |
| parent | Merge #9075: Decouple peer-processing-logic from block-connection-logic (#3) (diff) | |
| download | discoin-47db07537746940ee7dd0739a8c73e328837813f.tar.xz discoin-47db07537746940ee7dd0739a8c73e328837813f.zip | |
qt: Plug many memory leaks
None of these are very serious, and are leaks in objects that are
created at most one time.
In most cases this means properly using the QObject parent hierarchy,
except for BanTablePriv/PeerTablePriv which are not QObject,
so use a std::unique_ptr instead.
Diffstat (limited to 'src/qt/bantablemodel.h')
| -rw-r--r-- | src/qt/bantablemodel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/bantablemodel.h b/src/qt/bantablemodel.h index fe9600ac0..3c03d05c0 100644 --- a/src/qt/bantablemodel.h +++ b/src/qt/bantablemodel.h @@ -40,6 +40,7 @@ class BanTableModel : public QAbstractTableModel public: explicit BanTableModel(ClientModel *parent = 0); + ~BanTableModel(); void startAutoRefresh(); void stopAutoRefresh(); @@ -66,7 +67,7 @@ public Q_SLOTS: private: ClientModel *clientModel; QStringList columns; - BanTablePriv *priv; + std::unique_ptr<BanTablePriv> priv; }; #endif // BITCOIN_QT_BANTABLEMODEL_H |