diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/divesite.c | 1 | ||||
-rw-r--r-- | core/subsurface-qt/DiveListNotifier.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/core/divesite.c b/core/divesite.c index 5f6275027..23ef62070 100644 --- a/core/divesite.c +++ b/core/divesite.c @@ -23,6 +23,7 @@ int get_divesite_idx(const struct dive_site *ds, struct dive_site_table *ds_tabl return -1; } +// TODO: keep table sorted by UUID and do a binary search? struct dive_site *get_dive_site_by_uuid(uint32_t uuid, struct dive_site_table *ds_table) { int i; diff --git a/core/subsurface-qt/DiveListNotifier.h b/core/subsurface-qt/DiveListNotifier.h index 35ecf108d..124bde127 100644 --- a/core/subsurface-qt/DiveListNotifier.h +++ b/core/subsurface-qt/DiveListNotifier.h @@ -42,6 +42,9 @@ signals: void divesDeselected(dive_trip *trip, const QVector<dive *> &dives); void currentDiveChanged(); void selectionChanged(); + + // Dive site signals + void diveSiteDiveCountChanged(dive_site *ds); public: // Desktop uses the QTreeView class to present the list of dives. The layout // of this class gives us a very fundamental problem, as we can not easily |