Tracker: fix uninitialized members, CID 610132
This commit is contained in:
@@ -175,7 +175,15 @@ SettingsView::IsRevertable() const
|
||||
|
||||
DesktopSettingsView::DesktopSettingsView()
|
||||
:
|
||||
SettingsView("DesktopSettingsView")
|
||||
SettingsView("DesktopSettingsView"),
|
||||
fShowDisksIconRadioButton(NULL),
|
||||
fMountVolumesOntoDesktopRadioButton(NULL),
|
||||
fMountSharedVolumesOntoDesktopCheckBox(NULL),
|
||||
fShowDisksIcon(false),
|
||||
fMountVolumesOntoDesktop(false),
|
||||
fMountSharedVolumesOntoDesktop(false),
|
||||
fIntegrateNonBootBeOSDesktops(false),
|
||||
fEjectWhenUnmounting(false)
|
||||
{
|
||||
fShowDisksIconRadioButton = new BRadioButton("",
|
||||
B_TRANSLATE("Show Disks icon"),
|
||||
|
||||
@@ -90,7 +90,6 @@ private:
|
||||
BRadioButton* fShowDisksIconRadioButton;
|
||||
BRadioButton* fMountVolumesOntoDesktopRadioButton;
|
||||
BCheckBox* fMountSharedVolumesOntoDesktopCheckBox;
|
||||
BCheckBox* fIntegrateNonBootBeOSDesktopsCheckBox;
|
||||
|
||||
bool fShowDisksIcon;
|
||||
bool fMountVolumesOntoDesktop;
|
||||
|
||||
Reference in New Issue
Block a user