From 7437e205be74a0a5e3ad3a5137fc912e5f8184e1 Mon Sep 17 00:00:00 2001 From: Michael Pfeiffer Date: Sat, 12 Apr 2008 08:21:35 +0000 Subject: [PATCH] Removed debug code. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24934 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bootman/DefaultPartitionPage.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/apps/bootman/DefaultPartitionPage.cpp b/src/apps/bootman/DefaultPartitionPage.cpp index f37a5dd235..4f9e346dd0 100644 --- a/src/apps/bootman/DefaultPartitionPage.cpp +++ b/src/apps/bootman/DefaultPartitionPage.cpp @@ -173,7 +173,7 @@ DefaultPartitionPage::_CreateWaitRadioButton(BRect rect, const char* name, const return button; } -#include + void DefaultPartitionPage::_Layout() { @@ -181,7 +181,6 @@ DefaultPartitionPage::_Layout() float left = fDefaultPartition->Frame().left; float top = fDescription->Frame().bottom + kTextDistance; - printf("top %f\n", top); BView* controls[] = { fDefaultPartition, @@ -192,11 +191,9 @@ DefaultPartitionPage::_Layout() }; for (int i = 0; i < 5; i ++) { - printf("*"); BView* view = controls[i]; view->MoveTo(left, top); top = view->Frame().bottom + 3; } - printf("\n"); }