diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-08-05 12:42:12 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-08-05 12:42:12 +0100 |
commit | b68f753a756598287a19f8bb50ede4ea02f93ede (patch) | |
tree | 961a61ff2a369fa719f6c4a622fdd347165b5320 /indra/newview/llcofwearables.cpp | |
parent | 55e9785e7bcbdb4152c8145a32a9552d3e0b629f (diff) | |
parent | eef6ababcdd9ae4c9cbdc5dc295420fa66e753ab (diff) |
(hairy) merge from viewer-release
Diffstat (limited to 'indra/newview/llcofwearables.cpp')
-rw-r--r-- | indra/newview/llcofwearables.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llcofwearables.cpp b/indra/newview/llcofwearables.cpp index 672fcf33b7..29ead762d7 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; |