diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llui/lldraghandle.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/llui/lldraghandle.h')
-rw-r--r-- | linden/indra/llui/lldraghandle.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/linden/indra/llui/lldraghandle.h b/linden/indra/llui/lldraghandle.h index fc10639..6882c7f 100644 --- a/linden/indra/llui/lldraghandle.h +++ b/linden/indra/llui/lldraghandle.h | |||
@@ -44,7 +44,7 @@ class LLTextBox; | |||
44 | class LLDragHandle : public LLView | 44 | class LLDragHandle : public LLView |
45 | { | 45 | { |
46 | public: | 46 | public: |
47 | LLDragHandle(const LLString& name, const LLRect& rect, const LLString& title ); | 47 | LLDragHandle(const std::string& name, const LLRect& rect, const std::string& title ); |
48 | virtual ~LLDragHandle() { setTitleBox(NULL); } | 48 | virtual ~LLDragHandle() { setTitleBox(NULL); } |
49 | 49 | ||
50 | virtual void setValue(const LLSD& value); | 50 | virtual void setValue(const LLSD& value); |
@@ -55,8 +55,8 @@ public: | |||
55 | S32 getMaxTitleWidth() const { return mMaxTitleWidth; } | 55 | S32 getMaxTitleWidth() const { return mMaxTitleWidth; } |
56 | void setTitleVisible(BOOL visible); | 56 | void setTitleVisible(BOOL visible); |
57 | 57 | ||
58 | virtual void setTitle( const LLString& title ) = 0; | 58 | virtual void setTitle( const std::string& title ) = 0; |
59 | virtual const LLString& getTitle() const = 0; | 59 | virtual const std::string& getTitle() const = 0; |
60 | 60 | ||
61 | virtual BOOL handleHover(S32 x, S32 y, MASK mask); | 61 | virtual BOOL handleHover(S32 x, S32 y, MASK mask); |
62 | virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); | 62 | virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); |
@@ -88,10 +88,10 @@ class LLDragHandleTop | |||
88 | : public LLDragHandle | 88 | : public LLDragHandle |
89 | { | 89 | { |
90 | public: | 90 | public: |
91 | LLDragHandleTop(const LLString& name, const LLRect& rect, const LLString& title ); | 91 | LLDragHandleTop(const std::string& name, const LLRect& rect, const std::string& title ); |
92 | 92 | ||
93 | virtual void setTitle( const LLString& title ); | 93 | virtual void setTitle( const std::string& title ); |
94 | virtual const LLString& getTitle() const; | 94 | virtual const std::string& getTitle() const; |
95 | virtual void draw(); | 95 | virtual void draw(); |
96 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); | 96 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
97 | 97 | ||
@@ -105,10 +105,10 @@ class LLDragHandleLeft | |||
105 | : public LLDragHandle | 105 | : public LLDragHandle |
106 | { | 106 | { |
107 | public: | 107 | public: |
108 | LLDragHandleLeft(const LLString& name, const LLRect& rect, const LLString& title ); | 108 | LLDragHandleLeft(const std::string& name, const LLRect& rect, const std::string& title ); |
109 | 109 | ||
110 | virtual void setTitle( const LLString& title ); | 110 | virtual void setTitle( const std::string& title ); |
111 | virtual const LLString& getTitle() const; | 111 | virtual const std::string& getTitle() const; |
112 | virtual void draw(); | 112 | virtual void draw(); |
113 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); | 113 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
114 | 114 | ||