diff options
Diffstat (limited to 'linden/indra/llui/lluictrl.cpp')
-rw-r--r-- | linden/indra/llui/lluictrl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/llui/lluictrl.cpp b/linden/indra/llui/lluictrl.cpp index 66504b7..ddafa74 100644 --- a/linden/indra/llui/lluictrl.cpp +++ b/linden/indra/llui/lluictrl.cpp | |||
@@ -98,7 +98,7 @@ LLUICtrl::LLUICtrl() : | |||
98 | { | 98 | { |
99 | } | 99 | } |
100 | 100 | ||
101 | LLUICtrl::LLUICtrl(const LLString& name, const LLRect& rect, BOOL mouse_opaque, | 101 | LLUICtrl::LLUICtrl(const std::string& name, const LLRect& rect, BOOL mouse_opaque, |
102 | void (*on_commit_callback)(LLUICtrl*, void*), | 102 | void (*on_commit_callback)(LLUICtrl*, void*), |
103 | void* callback_userdata, | 103 | void* callback_userdata, |
104 | U32 reshape) | 104 | U32 reshape) |
@@ -147,13 +147,13 @@ LLSD LLUICtrl::getValue() const | |||
147 | } | 147 | } |
148 | 148 | ||
149 | // virtual | 149 | // virtual |
150 | BOOL LLUICtrl::setTextArg( const LLString& key, const LLStringExplicit& text ) | 150 | BOOL LLUICtrl::setTextArg( const std::string& key, const LLStringExplicit& text ) |
151 | { | 151 | { |
152 | return FALSE; | 152 | return FALSE; |
153 | } | 153 | } |
154 | 154 | ||
155 | // virtual | 155 | // virtual |
156 | BOOL LLUICtrl::setLabelArg( const LLString& key, const LLStringExplicit& text ) | 156 | BOOL LLUICtrl::setLabelArg( const std::string& key, const LLStringExplicit& text ) |
157 | { | 157 | { |
158 | return FALSE; | 158 | return FALSE; |
159 | } | 159 | } |
@@ -495,7 +495,7 @@ LLUICtrl* LLUICtrl::findRootMostFocusRoot() const | |||
495 | 495 | ||
496 | /* | 496 | /* |
497 | // Don't let the children handle the tool tip. Handle it here instead. | 497 | // Don't let the children handle the tool tip. Handle it here instead. |
498 | BOOL LLUICtrl::handleToolTip(S32 x, S32 y, LLString& msg, LLRect* sticky_rect_screen) | 498 | BOOL LLUICtrl::handleToolTip(S32 x, S32 y, std::string& msg, LLRect* sticky_rect_screen) |
499 | { | 499 | { |
500 | BOOL handled = FALSE; | 500 | BOOL handled = FALSE; |
501 | if (getVisible() && pointInView( x, y ) ) | 501 | if (getVisible() && pointInView( x, y ) ) |