diff options
Diffstat (limited to 'linden/indra/llui/lluictrl.h')
-rw-r--r-- | linden/indra/llui/lluictrl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llui/lluictrl.h b/linden/indra/llui/lluictrl.h index 7bc5eeb..b63f79b 100644 --- a/linden/indra/llui/lluictrl.h +++ b/linden/indra/llui/lluictrl.h | |||
@@ -69,7 +69,7 @@ public: | |||
69 | typedef BOOL (*LLUICtrlValidate)(LLUICtrl* ctrl, void* userdata); | 69 | typedef BOOL (*LLUICtrlValidate)(LLUICtrl* ctrl, void* userdata); |
70 | 70 | ||
71 | LLUICtrl(); | 71 | LLUICtrl(); |
72 | LLUICtrl( const LLString& name, const LLRect& rect, BOOL mouse_opaque, | 72 | LLUICtrl( const std::string& name, const LLRect& rect, BOOL mouse_opaque, |
73 | LLUICtrlCallback callback, | 73 | LLUICtrlCallback callback, |
74 | void* callback_userdata, | 74 | void* callback_userdata, |
75 | U32 reshape=FOLLOWS_NONE); | 75 | U32 reshape=FOLLOWS_NONE); |
@@ -78,7 +78,7 @@ public: | |||
78 | // LLView interface | 78 | // LLView interface |
79 | /*virtual*/ void initFromXML(LLXMLNodePtr node, LLView* parent); | 79 | /*virtual*/ void initFromXML(LLXMLNodePtr node, LLView* parent); |
80 | /*virtual*/ LLXMLNodePtr getXML(bool save_children = true) const; | 80 | /*virtual*/ LLXMLNodePtr getXML(bool save_children = true) const; |
81 | /*virtual*/ BOOL setLabelArg( const LLString& key, const LLStringExplicit& text ); | 81 | /*virtual*/ BOOL setLabelArg( const std::string& key, const LLStringExplicit& text ); |
82 | /*virtual*/ void onFocusReceived(); | 82 | /*virtual*/ void onFocusReceived(); |
83 | /*virtual*/ void onFocusLost(); | 83 | /*virtual*/ void onFocusLost(); |
84 | /*virtual*/ BOOL isCtrl() const; | 84 | /*virtual*/ BOOL isCtrl() const; |
@@ -97,7 +97,7 @@ public: | |||
97 | virtual class LLCtrlScrollInterface* getScrollInterface(); | 97 | virtual class LLCtrlScrollInterface* getScrollInterface(); |
98 | 98 | ||
99 | virtual LLSD getValue() const; | 99 | virtual LLSD getValue() const; |
100 | virtual BOOL setTextArg( const LLString& key, const LLStringExplicit& text ); | 100 | virtual BOOL setTextArg( const std::string& key, const LLStringExplicit& text ); |
101 | virtual void setIsChrome(BOOL is_chrome); | 101 | virtual void setIsChrome(BOOL is_chrome); |
102 | 102 | ||
103 | virtual BOOL acceptsTextInput() const; // Defaults to false | 103 | virtual BOOL acceptsTextInput() const; // Defaults to false |