diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-05-30 15:16:00 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-01 15:54:29 -0700 |
commit | e140703d34325344f503fc328c20643a8ea9249a (patch) | |
tree | 4078b811384d4457f6b873c4885eeca5313bb793 /qt-ui/mainwindow.h | |
parent | 4b520a8fbc08136d2050fc39b80766725f650fac (diff) | |
download | subsurface-e140703d34325344f503fc328c20643a8ea9249a.tar.gz |
Add a method to update the dive pictures on the model.
Call that method from the mainWindow when the dive changes.
The updateDivePictures walks around the events of the first dc (since all
pictures are distributed allong all dive computers) to get the events of
type '123' (I wonder if there's not a better way to save pictures on the
dive, like an linked list of char* named pictures.)
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r-- | qt-ui/mainwindow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h index 57c205ba4..c8c792ed4 100644 --- a/qt-ui/mainwindow.h +++ b/qt-ui/mainwindow.h @@ -180,6 +180,7 @@ private: bool plannerStateClean(); void createFakeDiveForAddAndPlan(); int fakeDiveId; + DivePictureModel *divePictureModel; }; #endif // MAINWINDOW_H |