through the methods of chaos programming, I hope I have finally got this right

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15459 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2005-12-10 08:19:35 +00:00
parent f3faa3c29d
commit a80bd60522

View File

@ -272,6 +272,14 @@ an actual BView within the scroll bar's window.
void
BScrollBar::SetValue(float value)
{
if (value == fValue)
return;
if (value > fMax)
value = fMax;
if (value < fMin)
value = fMin;
ValueChanged(value);
}
@ -286,14 +294,6 @@ BScrollBar::Value() const
void
BScrollBar::ValueChanged(float newValue)
{
if (newValue > fMax)
newValue = fMax;
if (newValue < fMin)
newValue = fMin;
if (newValue == fValue)
return;
if (fTarget) {
// cache target bounds
BRect targetBounds = fTarget->Bounds();