diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-08-06 10:54:37 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-06 10:54:37 -0700 |
commit | 98e374e65a061b1cbaccd31398e54403def339c1 (patch) | |
tree | 82fe4b9171a4540dd3d7e2d9b7e96cd2b0d42d57 /qt-ui | |
parent | 66bb17e60281b92efb095daee13c2e44536f55c2 (diff) | |
download | subsurface-98e374e65a061b1cbaccd31398e54403def339c1.tar.gz |
Fix order of initialization warning
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index a077f1619..2c5bbb0d4 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -86,8 +86,8 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent), po2GasItem(new PartialPressureGasItem()), heartBeatAxis(new DiveCartesianAxis()), heartBeatItem(new DiveHeartrateItem()), - mouseFollowerHorizontal(new DiveLineItem()), mouseFollowerVertical(new DiveLineItem()), + mouseFollowerHorizontal(new DiveLineItem()), rulerItem(new RulerItem2()), isGrayscale(false), printMode(false), |