2021-01-08 Fred Gleason <fredg@paravelsystems.com>

* Fixed a memory leak in 'RDLogListModel'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-01-08 11:18:08 -05:00
parent 2f9fe673b6
commit 8bfcf3def3
2 changed files with 3 additions and 0 deletions

View File

@@ -20766,3 +20766,5 @@
2021-01-07 Fred Gleason <fredg@paravelsystems.com>
* Restored support for scheduling cuts by specified order in
the 'Edit Cut' dialog in rdlibrary(1).
2021-01-08 Fred Gleason <fredg@paravelsystems.com>
* Fixed a memory leak in 'RDLogListModel'.

View File

@@ -212,6 +212,7 @@ void RDLogListModel::refresh(int row)
updateRow(row,q);
emit dataChanged(createIndex(row,0),createIndex(row,columnCount()));
}
delete q;
}
}