diff options
author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-06-17 20:54:33 +0300 |
---|---|---|
committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-06-17 20:54:33 +0300 |
commit | 9a5c3a293908c3a3de362e7b3ea792e559033adf (patch) | |
tree | 72dac206672787e2816f37fb0b24b33c6b4f35b3 | |
parent | c75c247bc9a434e4a9e3166145e665d7811da7dc (diff) |
Fixed build.
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/lloutfitslist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index 927ea19d98..e4079c709a 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -613,7 +613,7 @@ void LLOutfitsList::applyFilterToTab( { // hide tab if its title doesn't pass filter // and it has no visible items - tab->setVisible(!list->empty()); + tab->setVisible(list->size() > 0); // remove title highlighting because it might // have been previously highlighted by less restrictive filter |