summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@nokia.com>2011-11-29 22:30:37 +0100
committerKarsten Heimrich <karsten.heimrich@nokia.com>2011-11-30 10:45:59 +0100
commit4b4e2320bb263b92086bc843c2f129d713ae36d6 (patch)
treed70aea5c46b22e15008cf0fced8c9d7b17d763ad
parentc31af2fce187fcdf4159642d2ab38ae4474815f1 (diff)
Fix warning about wrong initialization order.
Change-Id: I3cbcec3c8b22558b8e452be8abfa44b392e1c8b3 Reviewed-by: Niels Weber <niels.2.weber@nokia.com>
-rw-r--r--installerbuilder/installerbase/tabcontroller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/installerbuilder/installerbase/tabcontroller.cpp b/installerbuilder/installerbase/tabcontroller.cpp
index 997f132cc..8a6a22401 100644
--- a/installerbuilder/installerbase/tabcontroller.cpp
+++ b/installerbuilder/installerbase/tabcontroller.cpp
@@ -64,9 +64,9 @@ public:
TabController::Private::Private()
: m_init(false)
+ , m_networkSettingsChanged(false)
, m_gui(0)
, m_core(0)
- , m_networkSettingsChanged(false)
{
}