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()),
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);
}