diff options
author | Richard Linden <none@none> | 2010-04-01 16:41:45 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-04-01 16:41:45 -0700 |
commit | a9b806071ac0b60b9c4c36cc98564846c677dbd4 (patch) | |
tree | 42c81f6def9f7e7e20f5b97ec17c2ead94481b48 /indra/llui | |
parent | be16153af8c1caa468380498a13cf5d7e7cc2c18 (diff) |
fix for bad merge
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llflatlistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llflatlistview.cpp b/indra/llui/llflatlistview.cpp index 0fd7e7ed55..35f5a6bbb9 100644 --- a/indra/llui/llflatlistview.cpp +++ b/indra/llui/llflatlistview.cpp @@ -790,7 +790,7 @@ BOOL LLFlatListView::canSelectAll() const void LLFlatListView::selectAll() { if (!mAllowSelection || !mMultipleSelection) - return false; + return; mSelectedItemPairs.clear(); |