Network prefs: build fix.

This commit is contained in:
Adrien Destugues
2014-11-05 14:30:20 +01:00
parent e743f8460d
commit f98814b714
@@ -13,9 +13,9 @@ NetworkSetupProfile::NetworkSetupProfile()
: :
fRoot(new BEntry()), fRoot(new BEntry()),
fPath(new BPath()), fPath(new BPath()),
fName(NULL), fIsDefault(false),
fIsCurrent(false), fIsCurrent(false),
fIsDefault(false) fName(NULL)
{ {
} }
@@ -24,8 +24,8 @@ NetworkSetupProfile::NetworkSetupProfile(const char* path)
: :
fRoot(NULL), fRoot(NULL),
fPath(NULL), fPath(NULL),
fIsCurrent(false), fIsDefault(false),
fIsDefault(false) fIsCurrent(false)
{ {
SetTo(path); SetTo(path);
} }
@@ -35,8 +35,8 @@ NetworkSetupProfile::NetworkSetupProfile(const entry_ref* ref)
: :
fRoot(NULL), fRoot(NULL),
fPath(NULL), fPath(NULL),
fIsCurrent(false), fIsDefault(false),
fIsDefault(false) fIsCurrent(false)
{ {
SetTo(ref); SetTo(ref);
} }
@@ -46,8 +46,8 @@ NetworkSetupProfile::NetworkSetupProfile(BEntry* entry)
: :
fRoot(NULL), fRoot(NULL),
fPath(NULL), fPath(NULL),
fIsCurrent(false), fIsDefault(false),
fIsDefault(false) fIsCurrent(false)
{ {
SetTo(entry); SetTo(entry);
} }