From b4679c819fde45e0597873b87cc0ccb1650b70de Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Thu, 17 Jul 2014 08:36:36 +0200 Subject: [PATCH] Add missing struct keyword in DivePlotDataModel Signed-off-by: Anton Lundin Signed-off-by: Dirk Hohndel --- qt-ui/profile/diveplotdatamodel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };