mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: fix deprecated QVector constructor
Annoyingly, the replacement has only been available since Qt 5.14. To make the code less messy, implement our own stdToQt conversion helper. Suggested-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1a0cf0bb44
commit
f193c2ef08
4 changed files with 19 additions and 17 deletions
|
|
@ -659,7 +659,7 @@ void ShiftTime::redoit()
|
|||
sort_dive_table(&trip->dives); // Keep the trip-table in order
|
||||
|
||||
// Send signals
|
||||
QVector<dive *> dives = QVector<dive *>::fromStdVector(diveList);
|
||||
QVector<dive *> dives = stdToQt<dive *>(diveList);
|
||||
emit diveListNotifier.divesTimeChanged(timeChanged, dives);
|
||||
emit diveListNotifier.divesChanged(dives, DiveField::DATETIME);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue