diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-07-17 08:36:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-17 00:04:24 -0700 |
commit | b4679c819fde45e0597873b87cc0ccb1650b70de (patch) | |
tree | edababd75bbd0106ed443f5faaf92557547e85e2 /qt-ui | |
parent | 6d7a9b946634542dfa6b8649850ed87ba20c5db6 (diff) | |
download | subsurface-b4679c819fde45e0597873b87cc0ccb1650b70de.tar.gz |
Add missing struct keyword in DivePlotDataModel
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/profile/diveplotdatamodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.h b/qt-ui/profile/diveplotdatamodel.h index bb0c64152..9db4a078d 100644 --- a/qt-ui/profile/diveplotdatamodel.h +++ b/qt-ui/profile/diveplotdatamodel.h @@ -62,7 +62,7 @@ public: void calculateDecompression(); private: - plot_info pInfo; + struct plot_info pInfo; int diveId; unsigned int dcNr; }; |