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 | |
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')
-rw-r--r-- | qt-ui/profile/diveprofileitem.cpp | 2 | ||||
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 2 |
2 files changed, 2 insertions, 2 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) { } diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index e4dd81856..f9aa49eff 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -84,9 +84,9 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent), timeAxis(new TimeAxis()), diveProfileItem(new DiveProfileItem()), temperatureItem(new DiveTemperatureItem()), + meanDepthItem(new DiveMeanDepthItem()), cylinderPressureAxis(new DiveCartesianAxis()), gasPressureItem(new DiveGasPressureItem()), - meanDepthItem(new DiveMeanDepthItem()), diveComputerText(new DiveTextItem()), diveCeiling(new DiveCalculatedCeiling()), reportedCeiling(new DiveReportedCeiling()), |