зеркало из https://github.com/mozilla/gecko-dev.git
Fixed bug in SetPosition. Thanks to Cyrus Harmon <cyrus@neomorphic.com>
This commit is contained in:
Родитель
ae6b346f41
Коммит
17f6998e7d
|
@ -229,9 +229,9 @@ NS_METHOD nsScrollbar::GetMaxRange(PRUint32& aMaxRange)
|
|||
*/
|
||||
NS_METHOD nsScrollbar::SetPosition(PRUint32 aPos)
|
||||
{
|
||||
if (aPos < 0)
|
||||
if ((PRInt32)aPos < 0)
|
||||
aPos = 0;
|
||||
mValue = ((int)aPos) > mMaxRange ? (mMaxRange - 1) : ((int)aPos);
|
||||
mValue = ((int)aPos) > mMaxRange ? mMaxRange : ((int)aPos);
|
||||
return (NS_OK);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче