summaryrefslogtreecommitdiff
path: root/indra/newview/llinventoryfilter.cpp
diff options
context:
space:
mode:
authorJonathan Yap <jhwelch@gmail.com>2014-06-06 14:56:11 -0400
committerJonathan Yap <jhwelch@gmail.com>2014-06-06 14:56:11 -0400
commit89837f385261804781979bdac499d264457e3297 (patch)
tree4498c6f223afe83a3ff26ee709b37382df875152 /indra/newview/llinventoryfilter.cpp
parent4da7f68549f531a6bec3643727cc68fb29a00bfa (diff)
STOMR-2034 XML adjustments and a bit of code cleanup
Diffstat (limited to 'indra/newview/llinventoryfilter.cpp')
-rwxr-xr-xindra/newview/llinventoryfilter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp
index 25447da53b..ce0f66edbb 100755
--- a/indra/newview/llinventoryfilter.cpp
+++ b/indra/newview/llinventoryfilter.cpp
@@ -174,6 +174,8 @@ bool LLInventoryFilter::checkAgainstFilterType(const LLFolderViewModelItemInvent
const U32 filterTypes = mFilterOps.mFilterTypes;
+ const U32 FILTER_YOUNGER = 0;
+
////////////////////////////////////////////////////////////////////////////////
// FILTERTYPE_OBJECT
// Pass if this item's type is of the correct filter type
@@ -221,8 +223,7 @@ bool LLInventoryFilter::checkAgainstFilterType(const LLFolderViewModelItemInvent
earliest = 0;
}
-llwarns << "DBG 3 " << mFilterOps.mDateSearchDirection << llendl;
- if (1 == mFilterOps.mDateSearchDirection)
+ if (FILTER_YOUNGER == mFilterOps.mDateSearchDirection)
{
if (listener->getCreationDate() < earliest ||
listener->getCreationDate() > mFilterOps.mMaxDate)
@@ -685,7 +686,6 @@ void LLInventoryFilter::setHoursAgo(U32 hours)
void LLInventoryFilter::setDateSearchDirection(U32 direction)
{
-llwarns << "DBG 2 " << direction << llendl;
if (direction != mFilterOps.mDateSearchDirection)
{
mFilterOps.mDateSearchDirection = direction;