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 -4
View File
@@ -173,7 +173,7 @@ DefaultPartitionPage::_CreateWaitRadioButton(BRect rect, const char* name, const
return button; return button;
} }
#include <stdio.h>
void void
DefaultPartitionPage::_Layout() DefaultPartitionPage::_Layout()
{ {
@@ -181,7 +181,6 @@ DefaultPartitionPage::_Layout()
float left = fDefaultPartition->Frame().left; float left = fDefaultPartition->Frame().left;
float top = fDescription->Frame().bottom + kTextDistance; float top = fDescription->Frame().bottom + kTextDistance;
printf("top %f\n", top);
BView* controls[] = { BView* controls[] = {
fDefaultPartition, fDefaultPartition,
@@ -192,11 +191,9 @@ DefaultPartitionPage::_Layout()
}; };
for (int i = 0; i < 5; i ++) { for (int i = 0; i < 5; i ++) {
printf("*");
BView* view = controls[i]; BView* view = controls[i];
view->MoveTo(left, top); view->MoveTo(left, top);
top = view->Frame().bottom + 3; top = view->Frame().bottom + 3;
} }
printf("\n");
} }