diff options
Diffstat (limited to 'indra/llui/lltabcontainer.h')
| -rw-r--r-- | indra/llui/lltabcontainer.h | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/llui/lltabcontainer.h b/indra/llui/lltabcontainer.h index 40f272ffa8..4ac7e73d25 100644 --- a/indra/llui/lltabcontainer.h +++ b/indra/llui/lltabcontainer.h @@ -182,15 +182,15 @@ public:      void        removeTabPanel( LLPanel* child );      void        lockTabs(S32 num_tabs = 0);      void        unlockTabs(); -    S32         getNumLockedTabs() { return mLockedTabCount; } +    S32         getNumLockedTabs() const { return mLockedTabCount; }      void        enableTabButton(S32 which, bool enable);      void        deleteAllTabs();      LLPanel*    getCurrentPanel(); -    S32         getCurrentPanelIndex(); -    S32         getTabCount(); -    LLPanel*    getPanelByIndex(S32 index); -    S32         getIndexForPanel(LLPanel* panel); -    S32         getPanelIndexByTitle(std::string_view title); +    S32         getCurrentPanelIndex() const; +    S32         getTabCount() const; +    LLPanel*    getPanelByIndex(S32 index) const; +    S32         getIndexForPanel(LLPanel* panel) const; +    S32         getPanelIndexByTitle(std::string_view title) const;      LLPanel*    getPanelByName(std::string_view name);      S32         getTotalTabWidth() const;      void        setCurrentTabName(const std::string& name);  | 
