removed debug printfs

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13406 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2005-07-02 16:37:57 +00:00
parent 4e4f2dcb55
commit 3e054be14b

View File

@ -260,15 +260,11 @@ BScrollBar::AttachedToWindow()
void
BScrollBar::SetValue(float value)
{
printf("%s\n", Orientation() == B_HORIZONTAL ? "horizontal" : "vertical");
printf("SetValue(%2f ->", value);
if (value > fMax)
value = fMax;
if (value < fMin)
value = fMin;
printf("%2f)\n", value);
printf("Old value: %2f\n", fValue);
if (value != fValue) {
fValue = value;
ValueChanged(fValue);
@ -300,7 +296,6 @@ BScrollBar::Proportion() const
void
BScrollBar::ValueChanged(float newValue)
{
printf("ValueChanged(%2f)\n", newValue);
if (fTarget == NULL)
return;