Remove 2 options which are not needed from the settings view

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19449 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2006-12-09 03:38:11 +00:00
parent fa4cb73d7b
commit b82780cfed
@@ -139,7 +139,7 @@ AGMSBayesianSpamFilterConfig::AGMSBayesianSpamFilterConfig (BMessage *settings)
fGenuineCutoffRatioTextBoxPntr (NULL),
fNoWordsMeansSpam (true),
fNoWordsMeansSpamCheckBoxPntr (NULL),
fQuitServerWhenFinished (false),
fQuitServerWhenFinished (true),
fQuitServerWhenFinishedCheckBoxPntr (NULL),
fServerSettingsButtonPntr (NULL),
fSpamCutoffRatio (0.99f),
@@ -263,7 +263,7 @@ void AGMSBayesianSpamFilterConfig::AttachedToWindow ()
// Button for editing the server settings.
fServerSettingsButtonPntr = new BButton (
/* fServerSettingsButtonPntr = new BButton (
tempRect,
"serverSettings",
"Advanced Server Settings…",
@@ -276,6 +276,7 @@ void AGMSBayesianSpamFilterConfig::AttachedToWindow ()
tempRect.top = fServerSettingsButtonPntr->Frame().bottom + 1;
tempRect.bottom = tempRect.top + 20;
// Checkbox for closing the server when done.
fQuitServerWhenFinishedCheckBoxPntr = new BCheckBox (
@@ -291,6 +292,7 @@ void AGMSBayesianSpamFilterConfig::AttachedToWindow ()
tempRect = Bounds ();
tempRect.top = fQuitServerWhenFinishedCheckBoxPntr->Frame().bottom + 1;
tempRect.bottom = tempRect.top + 20;
*/
}