diff options
| author | Rye <rye@alchemyviewer.org> | 2025-08-20 18:04:55 -0400 | 
|---|---|---|
| committer | Rye <rye@alchemyviewer.org> | 2025-08-20 18:04:55 -0400 | 
| commit | ba30737d8f4add8ddd8c77d18df6497b46583fe9 (patch) | |
| tree | 81e5412a364ff80b5250fe6db9e653d35621c20e /indra/llui/llmultislider.h | |
| parent | f0db568bf8d313a00e10c1c4ee4dd7f716a9d987 (diff) | |
| parent | d5f748c91c650a2ec534c497b9e098ccb317d70b (diff) | |
Merge branch 'develop' of github.com:secondlife/viewer into rye/infinitemac
Diffstat (limited to 'indra/llui/llmultislider.h')
| -rw-r--r-- | indra/llui/llmultislider.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/llmultislider.h b/indra/llui/llmultislider.h index b2bfc8bc84..af255bcc8f 100644 --- a/indra/llui/llmultislider.h +++ b/indra/llui/llmultislider.h @@ -117,10 +117,10 @@ public:      /*virtual*/ void    onMouseLeave(S32 x, S32 y, MASK mask) override;      /*virtual*/ void    draw() override; -    S32             getMaxNumSliders() { return mMaxNumSliders; } -    S32             getCurNumSliders() { return static_cast<S32>(mValue.size()); } -    F32             getOverlapThreshold() { return mOverlapThreshold; } -    bool            canAddSliders() { return mValue.size() < mMaxNumSliders; } +    S32             getMaxNumSliders() const { return mMaxNumSliders; } +    S32             getCurNumSliders() const { return static_cast<S32>(mValue.size()); } +    F32             getOverlapThreshold() const { return mOverlapThreshold; } +    bool            canAddSliders() const { return mValue.size() < mMaxNumSliders; }  protected:  | 
