diff --git a/src/kits/tracker/SettingsViews.cpp b/src/kits/tracker/SettingsViews.cpp index 453fefd555..0bfa2fffd5 100644 --- a/src/kits/tracker/SettingsViews.cpp +++ b/src/kits/tracker/SettingsViews.cpp @@ -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"), diff --git a/src/kits/tracker/SettingsViews.h b/src/kits/tracker/SettingsViews.h index be10b854fb..b201f5f49b 100644 --- a/src/kits/tracker/SettingsViews.h +++ b/src/kits/tracker/SettingsViews.h @@ -90,7 +90,6 @@ private: BRadioButton* fShowDisksIconRadioButton; BRadioButton* fMountVolumesOntoDesktopRadioButton; BCheckBox* fMountSharedVolumesOntoDesktopCheckBox; - BCheckBox* fIntegrateNonBootBeOSDesktopsCheckBox; bool fShowDisksIcon; bool fMountVolumesOntoDesktop;