diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2014-03-10 13:43:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-03-10 09:01:58 -0700 |
commit | 0325b267ee540c4b3ea2103bdfe54e43029556bc (patch) | |
tree | fded35553feaf3e14aaa526876a9cfb54082c1fa /qt-ui/profile/divecartesianaxis.cpp | |
parent | b1d1c8882207049af73f4dc4bc8ef071c97c881a (diff) | |
download | subsurface-0325b267ee540c4b3ea2103bdfe54e43029556bc.tar.gz |
Profile2: fix some initializer list order warnings
Such can be disabled with -Wno-reorder and are clearly
more of a nuisance, but C++98 12.6.2.5 says the order should be
the same as in the class declaration.
On theory this would only speed the compile times a tiny amount.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/divecartesianaxis.cpp')
-rw-r--r-- | qt-ui/profile/divecartesianaxis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/divecartesianaxis.cpp b/qt-ui/profile/divecartesianaxis.cpp index 585fe8076..f5ba988e8 100644 --- a/qt-ui/profile/divecartesianaxis.cpp +++ b/qt-ui/profile/divecartesianaxis.cpp @@ -64,9 +64,9 @@ DiveCartesianAxis::DiveCartesianAxis() : QObject(), max(0), interval(1), tick_size(0), - labelScale(1.0), textVisibility(true), lineVisibility(true), + labelScale(1.0), line_size(1) { setPen(gridPen()); |