Tracker: fix uninitialized members, CID 610132

This commit is contained in:
John Scipione
2014-08-10 15:04:42 -04:00
parent 91dee2fc68
commit 68295c9255
2 changed files with 9 additions and 2 deletions
+9 -1
View File
@@ -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"),
-1
View File
@@ -90,7 +90,6 @@ private:
BRadioButton* fShowDisksIconRadioButton;
BRadioButton* fMountVolumesOntoDesktopRadioButton;
BCheckBox* fMountSharedVolumesOntoDesktopCheckBox;
BCheckBox* fIntegrateNonBootBeOSDesktopsCheckBox;
bool fShowDisksIcon;
bool fMountVolumesOntoDesktop;