diff options
author | Richard Linden <none@none> | 2012-07-26 16:30:27 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-07-26 16:30:27 -0700 |
commit | 779d982717098e608285b171ac06f5b9f43a94a0 (patch) | |
tree | 6e1b94886318117ca9f1cc67169cfe00cd513201 /indra/newview/llinventoryfilter.cpp | |
parent | e2e0003dea5994ee36f18bba683fde4e7775db66 (diff) |
made Deprecated params write-only
Diffstat (limited to 'indra/newview/llinventoryfilter.cpp')
-rw-r--r-- | indra/newview/llinventoryfilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index 3f38d80a39..3e14faa55e 100644 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -89,7 +89,7 @@ bool LLInventoryFilter::check(const LLFolderViewModelItem* item) const BOOL passed_clipboard = (listener ? checkAgainstClipboard(listener->getUUID()) : TRUE); // If it's a folder and we're showing all folders, return automatically. - const BOOL is_folder = listener->getInventoryType() == LLInventoryType::IT_CATEGORY;; + const BOOL is_folder = listener->getInventoryType() == LLInventoryType::IT_CATEGORY; if (is_folder && (mFilterOps.mShowFolderState == LLInventoryFilter::SHOW_ALL_FOLDERS)) { return passed_clipboard; |