diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-09-04 21:54:46 +0200 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-09-04 21:54:46 +0200 |
commit | 5ead04fb463544a5df4b2be24107ba31c608abe6 (patch) | |
tree | 901d1cb02cc689f1887dd810a1366ea59976626c | |
parent | a04da8fe752830bb5c810e79292761f056d461e2 (diff) |
VWR-22113 FOLLOWUP fixed indentation
... and changed jira issue ID in comment to the current one
-rw-r--r-- | indra/newview/llagentwearables.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index 5c0c0f398f..dd08e6c49a 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -1619,14 +1619,14 @@ void LLAgentWearables::queryWearableCache() gAgentQueryManager.mActiveCacheQueries[baked_index] = gAgentQueryManager.mWearablesCacheQueryID; } - //ext-8696: gAgent.getRegion() can return null if invalid, seen here on logout - if(gAgent.getRegion()) - { - llinfos << "Requesting texture cache entry for " << num_queries << " baked textures" << llendl; - gMessageSystem->sendReliable(gAgent.getRegion()->getHost()); - gAgentQueryManager.mNumPendingQueries++; - gAgentQueryManager.mWearablesCacheQueryID++; - } + //VWR-22113: gAgent.getRegion() can return null if invalid, seen here on logout + if(gAgent.getRegion()) + { + llinfos << "Requesting texture cache entry for " << num_queries << " baked textures" << llendl; + gMessageSystem->sendReliable(gAgent.getRegion()->getHost()); + gAgentQueryManager.mNumPendingQueries++; + gAgentQueryManager.mWearablesCacheQueryID++; + } } LLUUID LLAgentWearables::computeBakedTextureHash(LLVOAvatarDefines::EBakedTextureIndex baked_index, |