diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-10 18:41:54 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-10 18:41:54 +0000 |
commit | cd627804576a3b58377ec6cca31837cc556939d4 (patch) | |
tree | be73e9d55d97b2f112da1bbd64f3b2aad9ae95d9 /indra | |
parent | e7c9f674945533e4a56313b74746886bdb724be2 (diff) |
bracket fix.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfolderviewitem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp index 2a77835373..3946224c0c 100644 --- a/indra/newview/llfolderviewitem.cpp +++ b/indra/newview/llfolderviewitem.cpp @@ -2548,8 +2548,8 @@ bool LLInventorySort::operator()(const LLFolderViewItem* const& a, const LLFolde LLViewerInventoryItem* bitem = (static_cast<const LLItemBridge*>(b->getListener()))->getItem(); if (!aitem || !bitem) return false; - S32 a_sort = (aitem->getSortField(); - S32 b_sort = (bitem->getSortField(); + S32 a_sort = aitem->getSortField(); + S32 b_sort = bitem->getSortField(); return a_sort < b_sort; } } |