From f98814b7141b76935b55f0b734751e5c6e717fd0 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Wed, 5 Nov 2014 14:28:56 +0100 Subject: [PATCH] Network prefs: build fix. --- src/preferences/network/NetworkSetupProfile.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/preferences/network/NetworkSetupProfile.cpp b/src/preferences/network/NetworkSetupProfile.cpp index e2d7e1b7b1..3fbd3ce7c5 100644 --- a/src/preferences/network/NetworkSetupProfile.cpp +++ b/src/preferences/network/NetworkSetupProfile.cpp @@ -13,9 +13,9 @@ NetworkSetupProfile::NetworkSetupProfile() : fRoot(new BEntry()), fPath(new BPath()), - fName(NULL), + fIsDefault(false), fIsCurrent(false), - fIsDefault(false) + fName(NULL) { } @@ -24,8 +24,8 @@ NetworkSetupProfile::NetworkSetupProfile(const char* path) : fRoot(NULL), fPath(NULL), - fIsCurrent(false), - fIsDefault(false) + fIsDefault(false), + fIsCurrent(false) { SetTo(path); } @@ -35,8 +35,8 @@ NetworkSetupProfile::NetworkSetupProfile(const entry_ref* ref) : fRoot(NULL), fPath(NULL), - fIsCurrent(false), - fIsDefault(false) + fIsDefault(false), + fIsCurrent(false) { SetTo(ref); } @@ -46,8 +46,8 @@ NetworkSetupProfile::NetworkSetupProfile(BEntry* entry) : fRoot(NULL), fPath(NULL), - fIsCurrent(false), - fIsDefault(false) + fIsDefault(false), + fIsCurrent(false) { SetTo(entry); }