aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llscrolllistctrl.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:01 -0500
committerJacek Antonelli2008-08-15 23:45:01 -0500
commit28d8d4e7664bcd6c8369cc18832e42096af7cad2 (patch)
tree069020fe66339aff2ca4176370ff743b14713f2d /linden/indra/llui/llscrolllistctrl.h
parentSecond Life viewer sources 1.17.2.0 (diff)
downloadmeta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.zip
meta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.tar.gz
meta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.tar.bz2
meta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.tar.xz
Second Life viewer sources 1.17.3.0
Diffstat (limited to '')
-rw-r--r--linden/indra/llui/llscrolllistctrl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/llscrolllistctrl.h b/linden/indra/llui/llscrolllistctrl.h
index 9829832..f1bd9bb 100644
--- a/linden/indra/llui/llscrolllistctrl.h
+++ b/linden/indra/llui/llscrolllistctrl.h
@@ -59,7 +59,7 @@ public:
59 virtual S32 getHeight() const = 0; 59 virtual S32 getHeight() const = 0;
60 virtual const LLString& getText() const { return LLString::null; } 60 virtual const LLString& getText() const { return LLString::null; }
61 virtual const LLString& getTextLower() const { return LLString::null; } 61 virtual const LLString& getTextLower() const { return LLString::null; }
62 virtual const BOOL getVisible() const { return TRUE; } 62 virtual BOOL getVisible() const { return TRUE; }
63 virtual void setWidth(S32 width) = 0; 63 virtual void setWidth(S32 width) = 0;
64 virtual void highlightText(S32 offset, S32 num_chars) {} 64 virtual void highlightText(S32 offset, S32 num_chars) {}
65 virtual BOOL isText() = 0; 65 virtual BOOL isText() = 0;
@@ -96,7 +96,7 @@ public:
96 virtual void setWidth(S32 width) { mWidth = width; } 96 virtual void setWidth(S32 width) { mWidth = width; }
97 virtual S32 getHeight() const { return llround(mFont->getLineHeight()); } 97 virtual S32 getHeight() const { return llround(mFont->getLineHeight()); }
98 virtual const LLString& getText() const { return mText.getString(); } 98 virtual const LLString& getText() const { return mText.getString(); }
99 virtual const BOOL getVisible() const { return mVisible; } 99 virtual BOOL getVisible() const { return mVisible; }
100 virtual void highlightText(S32 offset, S32 num_chars) {mHighlightOffset = offset; mHighlightCount = num_chars;} 100 virtual void highlightText(S32 offset, S32 num_chars) {mHighlightOffset = offset; mHighlightCount = num_chars;}
101 void setText(const LLString& text); 101 void setText(const LLString& text);
102 virtual void setColor(const LLColor4&); 102 virtual void setColor(const LLColor4&);