Close two compiler warnings about reordering

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2015-01-04 22:36:01 +01:00 committed by Dirk Hohndel
parent 7f407095aa
commit 6b17f20081
2 changed files with 2 additions and 2 deletions

View file

@ -978,7 +978,7 @@ void PartialPressureGasItem::setColors(const QColor &normal, const QColor &alert
alertColor = alert; alertColor = alert;
} }
InstantMeanDepthLine::InstantMeanDepthLine() : vAxis(NULL), hAxis(NULL) InstantMeanDepthLine::InstantMeanDepthLine() : hAxis(NULL), vAxis(NULL)
{ {
} }

View file

@ -84,9 +84,9 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent),
timeAxis(new TimeAxis()), timeAxis(new TimeAxis()),
diveProfileItem(new DiveProfileItem()), diveProfileItem(new DiveProfileItem()),
temperatureItem(new DiveTemperatureItem()), temperatureItem(new DiveTemperatureItem()),
meanDepthItem(new DiveMeanDepthItem()),
cylinderPressureAxis(new DiveCartesianAxis()), cylinderPressureAxis(new DiveCartesianAxis()),
gasPressureItem(new DiveGasPressureItem()), gasPressureItem(new DiveGasPressureItem()),
meanDepthItem(new DiveMeanDepthItem()),
diveComputerText(new DiveTextItem()), diveComputerText(new DiveTextItem()),
diveCeiling(new DiveCalculatedCeiling()), diveCeiling(new DiveCalculatedCeiling()),
reportedCeiling(new DiveReportedCeiling()), reportedCeiling(new DiveReportedCeiling()),