From 3e054be14b7c5c10e502d9c72ddc8442d05536a6 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Sat, 2 Jul 2005 16:37:57 +0000 Subject: [PATCH] removed debug printfs git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13406 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/ScrollBar.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/kits/interface/ScrollBar.cpp b/src/kits/interface/ScrollBar.cpp index d09a3bf4ce..dedc404759 100644 --- a/src/kits/interface/ScrollBar.cpp +++ b/src/kits/interface/ScrollBar.cpp @@ -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;