From 5f96acc41eb63b92c3dbaadc45f48efc220c1c4d Mon Sep 17 00:00:00 2001 From: Michael Pfeiffer Date: Mon, 31 Mar 2008 19:48:03 +0000 Subject: [PATCH] Forgot to remove debug code. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24712 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bootman/DefaultPartitionPage.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/apps/bootman/DefaultPartitionPage.cpp b/src/apps/bootman/DefaultPartitionPage.cpp index 5a973c0c7f..f05959f262 100644 --- a/src/apps/bootman/DefaultPartitionPage.cpp +++ b/src/apps/bootman/DefaultPartitionPage.cpp @@ -98,7 +98,6 @@ DefaultPartitionPage::_BuildUI() AddChild(fDescription); LayoutDescriptionVertically(fDescription); rect.top = fDescription->Frame().bottom + kTextDistance; - fDescription->SetViewColor(255, 0, 0); BPopUpMenu* popUpMenu = _CreatePopUpMenu(); fDefaultPartition = new BMenuField(rect, "partitions", "Default Partition:", @@ -107,13 +106,11 @@ DefaultPartitionPage::_BuildUI() fDefaultPartition->SetDivider(divider); AddChild(fDefaultPartition); fDefaultPartition->ResizeToPreferred(); - fDefaultPartition->SetViewColor(0, 255, 0); rect.top = fDefaultPartition->Frame().bottom + kTextDistance; int32 timeout; fSettings->FindInt32("timeout", &timeout); fWait0 = _CreateWaitRadioButton(rect, "wait0", "Wait Indefinitely", -1, timeout); - fWait0->SetViewColor(0, 0, 255); fWait5 = _CreateWaitRadioButton(rect, "wait5", "Wait 5 Seconds", 5, timeout); fWait10 = _CreateWaitRadioButton(rect, "wait10", "Wait 10 Seconds", 10, timeout); fWait15 = _CreateWaitRadioButton(rect, "wait15", "Wait 15 Seconds", 15, timeout);