From 308b69359d0c591d3b98caaaae21de9e672b4a9a Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 8 Mar 2016 19:29:56 -0800 Subject: [PATCH] QMLManager: fix order of initialization Just avoids warnings. Signed-off-by: Dirk Hohndel --- qt-mobile/qmlmanager.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index 6851ec079..9d506859d 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -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());