* removed left over debug output, sorry about that

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17307 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2006-05-03 11:09:37 +00:00
parent 6a8e3decde
commit a9efee3047

View File

@ -291,7 +291,6 @@ an actual BView within the scroll bar's window.
void
BScrollBar::SetValue(float value)
{
//printf("BScrollBar::SetValue(%.1f)\n", value);
if (value == fValue)
return;
@ -305,7 +304,6 @@ BScrollBar::SetValue(float value)
_UpdateThumbFrame();
_UpdateArrowButtons();
//printf(" -> calling ValueChanged()\n");
ValueChanged(value);
}
@ -320,7 +318,6 @@ BScrollBar::Value() const
void
BScrollBar::ValueChanged(float newValue)
{
printf("BScrollBar::ValueChanged(%.1f)\n", newValue);
if (fTarget) {
// cache target bounds
BRect targetBounds = fTarget->Bounds();