mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Reorder initializers to be more c++-strict
c++ have some idea about in what order things should be initialized. This makes us comply with that order. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
082e59ea72
commit
0b0e5d834f
2 changed files with 6 additions and 6 deletions
|
@ -35,8 +35,8 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
|
|||
extraDataModel(new ExtraDataModel(this)),
|
||||
editMode(NONE),
|
||||
divePictureModel(DivePictureModel::instance()),
|
||||
currentTrip(0),
|
||||
copyPaste(false)
|
||||
copyPaste(false),
|
||||
currentTrip(0)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
ui.dateEdit->setDisplayFormat(getDateFormat());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue