Removed debug code.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24934 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer 2008-04-12 08:21:35 +00:00
parent 86ad7d1c71
commit 7437e205be
1 changed files with 1 additions and 4 deletions

View File

@ -173,7 +173,7 @@ DefaultPartitionPage::_CreateWaitRadioButton(BRect rect, const char* name, const
return button;
}
#include <stdio.h>
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");
}