diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-07-15 20:41:42 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-11-09 19:19:04 +0100 |
commit | 4e86d997141dc7cd9e83b6c6a4a47ebdcaa4ebd6 (patch) | |
tree | c211c83947404bef6c0e64ba5f7ea4d531e42a1f /qt-models/diveplotdatamodel.cpp | |
parent | 05a5a06fd3905db25208a0f794b54cf27e580904 (diff) | |
download | subsurface-4e86d997141dc7cd9e83b6c6a4a47ebdcaa4ebd6.tar.gz |
Cleanup: free plot data on exit
Some widgets copy the full plot info. Free these data on exit to
prevent monstrous valgrind reports.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/diveplotdatamodel.cpp')
-rw-r--r-- | qt-models/diveplotdatamodel.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-models/diveplotdatamodel.cpp b/qt-models/diveplotdatamodel.cpp index d89ab6f31..164cd04a4 100644 --- a/qt-models/diveplotdatamodel.cpp +++ b/qt-models/diveplotdatamodel.cpp @@ -14,6 +14,11 @@ DivePlotDataModel::DivePlotDataModel(QObject *parent) : memset(&plot_deco_state, 0, sizeof(struct deco_state)); } +DivePlotDataModel::~DivePlotDataModel() +{ + free_plot_info_data(&pInfo); +} + int DivePlotDataModel::columnCount(const QModelIndex&) const { return COLUMNS; |