diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-11-24 15:05:35 +0100 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2019-12-04 13:00:23 +0100 |
commit | 86f384f932ae04ab17dabadda81d845069f963d7 (patch) | |
tree | 7f0bf868e52cacf27a1e88e7be61a4428f95c75c /qt-models/divetripmodel.h | |
parent | ae753f4c4d9368f5e44ca5c14cbe6bc01775c48e (diff) | |
download | subsurface-86f384f932ae04ab17dabadda81d845069f963d7.tar.gz |
Cleanup: rename newCurrentDive signal to currentDiveChanged
This is more consistent with the rest of the signals.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/divetripmodel.h')
-rw-r--r-- | qt-models/divetripmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divetripmodel.h b/qt-models/divetripmodel.h index 9ed2189a0..8756ba217 100644 --- a/qt-models/divetripmodel.h +++ b/qt-models/divetripmodel.h @@ -95,7 +95,7 @@ signals: // indexes into local indexes according to current sorting/filtering and instructs the QSelectionModel to // perform the appropriate actions. void selectionChanged(const QVector<QModelIndex> &indexes); - void newCurrentDive(QModelIndex index); + void currentDiveChanged(QModelIndex index); protected: // Access trip and dive data static QVariant diveData(const struct dive *d, int column, int role); |