diff options
author | Anton Lundin <glance@acc.umu.se> | 2015-01-04 22:36:01 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-04 17:52:21 -0800 |
commit | 6b17f20081d028717a337bc8ca3250a9f21a5324 (patch) | |
tree | 7e452929314c8343d840a829a1bb70ebbe307a38 /qt-ui/profile/diveprofileitem.cpp | |
parent | 7f407095aa9871c5e82afe412ed4bc52c08922a6 (diff) | |
download | subsurface-6b17f20081d028717a337bc8ca3250a9f21a5324.tar.gz |
Close two compiler warnings about reordering
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveprofileitem.cpp')
-rw-r--r-- | qt-ui/profile/diveprofileitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp index 443a0407f..c049d9178 100644 --- a/qt-ui/profile/diveprofileitem.cpp +++ b/qt-ui/profile/diveprofileitem.cpp @@ -978,7 +978,7 @@ void PartialPressureGasItem::setColors(const QColor &normal, const QColor &alert alertColor = alert; } -InstantMeanDepthLine::InstantMeanDepthLine() : vAxis(NULL), hAxis(NULL) +InstantMeanDepthLine::InstantMeanDepthLine() : hAxis(NULL), vAxis(NULL) { } |