diff options
author | Jacek Antonelli | 2008-08-15 23:45:01 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:01 -0500 |
commit | 28d8d4e7664bcd6c8369cc18832e42096af7cad2 (patch) | |
tree | 069020fe66339aff2ca4176370ff743b14713f2d /linden/indra/llui/lluictrl.h | |
parent | Second Life viewer sources 1.17.2.0 (diff) | |
download | meta-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 'linden/indra/llui/lluictrl.h')
-rw-r--r-- | linden/indra/llui/lluictrl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/lluictrl.h b/linden/indra/llui/lluictrl.h index 3093437..5056319 100644 --- a/linden/indra/llui/lluictrl.h +++ b/linden/indra/llui/lluictrl.h | |||
@@ -136,7 +136,7 @@ public: | |||
136 | { | 136 | { |
137 | /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const | 137 | /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const |
138 | { | 138 | { |
139 | return filterResult_t(view->isCtrl() && static_cast<const LLUICtrl * const>(view)->hasTabStop() && children.size() == 0, TRUE); | 139 | return filterResult_t(view->isCtrl() && static_cast<const LLUICtrl *>(view)->hasTabStop() && children.size() == 0, TRUE); |
140 | } | 140 | } |
141 | }; | 141 | }; |
142 | 142 | ||
@@ -144,7 +144,7 @@ public: | |||
144 | { | 144 | { |
145 | /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const | 145 | /*virtual*/ filterResult_t operator() (const LLView* const view, const viewList_t & children) const |
146 | { | 146 | { |
147 | return filterResult_t(view->isCtrl() && static_cast<const LLUICtrl * const>(view)->acceptsTextInput(), TRUE); | 147 | return filterResult_t(view->isCtrl() && static_cast<const LLUICtrl *>(view)->acceptsTextInput(), TRUE); |
148 | } | 148 | } |
149 | }; | 149 | }; |
150 | 150 | ||