diff options
Diffstat (limited to 'indra/llui/lldockcontrol.h')
| -rw-r--r-- | indra/llui/lldockcontrol.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/lldockcontrol.h b/indra/llui/lldockcontrol.h index 7e31330713..b6ac9c19dd 100644 --- a/indra/llui/lldockcontrol.h +++ b/indra/llui/lldockcontrol.h @@ -61,19 +61,19 @@ public:      void off();      void forceRecalculatePosition();      void setDock(LLView* dockWidget); -    LLView* getDock() +    LLView* getDock() const      {          return mDockWidgetHandle.get();      }      void repositionDockable();      void drawToungue(); -    bool isDockVisible(); +    bool isDockVisible() const;      // gets a rect that bounds possible positions for a dockable control (EXT-1111)      void getAllowedRect(LLRect& rect); -    S32 getTongueWidth() { return mDockTongue->getWidth(); } -    S32 getTongueHeight() { return mDockTongue->getHeight(); } +    S32 getTongueWidth() const { return mDockTongue->getWidth(); } +    S32 getTongueHeight() const { return mDockTongue->getHeight(); }  private:      virtual void moveDockable();  | 
