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>
This commit is contained in:
Lubomir I. Ivanov 2014-03-10 13:43:43 +02:00 committed by Dirk Hohndel
parent b1d1c88822
commit 0325b267ee
3 changed files with 5 additions and 5 deletions

View file

@ -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());