diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-07-01 00:20:01 +0300 |
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-07-01 00:20:01 +0300 |
| commit | bbcedf9c847f1f768e6c34e74a6a4373b0e7ae24 (patch) | |
| tree | ad4389f34ef391be5eb6ef3fe75cea15160bb34a /indra/llui/llscrollbar.cpp | |
| parent | 924869900ae2646987ce2a8f0b494345701c50a6 (diff) | |
SL-19914 Inventory gallery Tab support #2
Diffstat (limited to 'indra/llui/llscrollbar.cpp')
| -rw-r--r-- | indra/llui/llscrollbar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llscrollbar.cpp b/indra/llui/llscrollbar.cpp index 62be0c28e8..735e2d529e 100644 --- a/indra/llui/llscrollbar.cpp +++ b/indra/llui/llscrollbar.cpp @@ -188,12 +188,12 @@ void LLScrollbar::setPageSize( S32 page_size ) } } -BOOL LLScrollbar::isAtBeginning() +bool LLScrollbar::isAtBeginning() const { return mDocPos == 0; } -BOOL LLScrollbar::isAtEnd() +bool LLScrollbar::isAtEnd() const { return mDocPos == getDocPosMax(); } |
