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/llview.cpp | |
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/llview.cpp')
-rw-r--r-- | linden/indra/llui/llview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/llview.cpp b/linden/indra/llui/llview.cpp index 22d426a..0b04213 100644 --- a/linden/indra/llui/llview.cpp +++ b/linden/indra/llui/llview.cpp | |||
@@ -455,8 +455,8 @@ bool LLCompareByTabOrder::operator() (const LLView* const a, const LLView* const | |||
455 | if(b && b->isCtrl()) b_score--; | 455 | if(b && b->isCtrl()) b_score--; |
456 | if(a_score == -2 && b_score == -2) | 456 | if(a_score == -2 && b_score == -2) |
457 | { | 457 | { |
458 | const LLUICtrl * const a_ctrl = static_cast<const LLUICtrl* const>(a); | 458 | const LLUICtrl * const a_ctrl = static_cast<const LLUICtrl*>(a); |
459 | const LLUICtrl * const b_ctrl = static_cast<const LLUICtrl* const>(b); | 459 | const LLUICtrl * const b_ctrl = static_cast<const LLUICtrl*>(b); |
460 | LLView::child_tab_order_const_iter_t a_found = mTabOrder.find(a_ctrl), b_found = mTabOrder.find(b_ctrl); | 460 | LLView::child_tab_order_const_iter_t a_found = mTabOrder.find(a_ctrl), b_found = mTabOrder.find(b_ctrl); |
461 | if(a_found != mTabOrder.end()) a_score--; | 461 | if(a_found != mTabOrder.end()) a_score--; |
462 | if(b_found != mTabOrder.end()) b_score--; | 462 | if(b_found != mTabOrder.end()) b_score--; |