diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-13 10:59:16 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-13 21:41:41 -0400 |
commit | 5d3967ce846ed4876abeb43ebe2d919064050ed6 (patch) | |
tree | 246ae5a2cc649eff0bd911a072b956a8440167a4 /desktop-widgets/locationinformation.h | |
parent | 954820aa81cb52cfe4442f2c6e81117827e32ccc (diff) | |
download | subsurface-5d3967ce846ed4876abeb43ebe2d919064050ed6.tar.gz |
Dive site: un-globalize displayed_dive_site
The global object displayed_dive_site is used a a backing-store
by the dive-site-edit widget. All external accesses were removed,
therefore make the object local to the widget.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/locationinformation.h')
-rw-r--r-- | desktop-widgets/locationinformation.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop-widgets/locationinformation.h b/desktop-widgets/locationinformation.h index 402c434e1..3e0da4aa6 100644 --- a/desktop-widgets/locationinformation.h +++ b/desktop-widgets/locationinformation.h @@ -3,6 +3,7 @@ #define LOCATIONINFORMATION_H #include "core/units.h" +#include "core/divesite.h" #include "ui_locationInformation.h" #include "qt-models/divelocationmodel.h" #include <stdint.h> @@ -50,6 +51,7 @@ private: bool modified; QAction *acceptAction, *rejectAction; GPSLocationInformationModel filter_model; + dive_site displayed_dive_site; }; class DiveLocationFilterProxyModel : public QSortFilterProxyModel { |