mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
QMLManager: fix order of initialization
Just avoids warnings. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
af2a90b536
commit
308b69359d
1 changed files with 3 additions and 2 deletions
|
@ -42,10 +42,11 @@ extern "C" int gitProgressCB(int percent)
|
|||
|
||||
QMLManager::QMLManager() : m_locationServiceEnabled(false),
|
||||
m_verboseEnabled(false),
|
||||
m_credentialStatus(UNKNOWN),
|
||||
reply(0),
|
||||
deletedDive(0),
|
||||
deletedTrip(0)
|
||||
deletedTrip(0),
|
||||
m_credentialStatus(UNKNOWN),
|
||||
m_lastDevicePixelRatio(1.0)
|
||||
{
|
||||
m_instance = this;
|
||||
appendTextToLog(getUserAgent());
|
||||
|
|
Loading…
Reference in a new issue