summaryrefslogtreecommitdiff
path: root/indra/newview/llcofwearables.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2010-08-04 17:21:33 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2010-08-04 17:21:33 -0400
commite6d5cc3bd1d678eaad7869a70b75d92772db3fc7 (patch)
treede872df91f83b5d062d6b148f23393038d803ba1 /indra/newview/llcofwearables.cpp
parentcf58852a5eac7c99c0c2770b44e4fe64d2cc8aee (diff)
EXT-8283 FIX, EXT-8360 FIX - original fixes got broken, presumably during some merge
Diffstat (limited to 'indra/newview/llcofwearables.cpp')
-rw-r--r--indra/newview/llcofwearables.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llcofwearables.cpp b/indra/newview/llcofwearables.cpp
index eb950bf6c1..acb513106d 100644
--- a/indra/newview/llcofwearables.cpp
+++ b/indra/newview/llcofwearables.cpp
@@ -396,7 +396,11 @@ void LLCOFWearables::refresh()
return;
}
- if (mCOFVersion == catp->getVersion()) return;
+ // BAP - this check has to be removed because an item name change does not
+ // change cat version - ie, checking version is not a complete way
+ // of finding out whether anything has changed in this category.
+ //if (mCOFVersion == catp->getVersion()) return;
+
mCOFVersion = catp->getVersion();
typedef std::vector<LLSD> values_vector_t;