aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llinventoryview.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2010-08-30 13:49:25 -0700
committerJacek Antonelli2010-09-16 20:40:34 -0500
commit65af0d9f820cf7a4a13b41154ded1f58efd538e6 (patch)
treebc29c6cdb9d52cf30707f8efa10c02d3071c0987 /linden/indra/newview/llinventoryview.cpp
parentFixed #455: inventory found items vanish after a certain amount of time. Also... (diff)
downloadmeta-impy-65af0d9f820cf7a4a13b41154ded1f58efd538e6.zip
meta-impy-65af0d9f820cf7a4a13b41154ded1f58efd538e6.tar.gz
meta-impy-65af0d9f820cf7a4a13b41154ded1f58efd538e6.tar.bz2
meta-impy-65af0d9f820cf7a4a13b41154ded1f58efd538e6.tar.xz
Moved LLInventoryPanel::buildNewViews called with objectp->mType behind LL_DEBUGS(Inventory)
Diffstat (limited to 'linden/indra/newview/llinventoryview.cpp')
-rw-r--r--linden/indra/newview/llinventoryview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llinventoryview.cpp b/linden/indra/newview/llinventoryview.cpp
index 71d8194..952121f 100644
--- a/linden/indra/newview/llinventoryview.cpp
+++ b/linden/indra/newview/llinventoryview.cpp
@@ -2081,9 +2081,9 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id)
2081 if (objectp->getType() <= LLAssetType::AT_NONE || 2081 if (objectp->getType() <= LLAssetType::AT_NONE ||
2082 objectp->getType() >= LLAssetType::AT_COUNT) 2082 objectp->getType() >= LLAssetType::AT_COUNT)
2083 { 2083 {
2084 llwarns << "LLInventoryPanel::buildNewViews called with objectp->mType == " 2084 LL_DEBUGS("Inventory") << "LLInventoryPanel::buildNewViews called with objectp->mType == "
2085 << ((S32) objectp->getType()) 2085 << ((S32) objectp->getType())
2086 << " (shouldn't happen)" << llendl; 2086 << " (shouldn't happen)" << LL_ENDL;
2087 } 2087 }
2088 else if (objectp->getType() == LLAssetType::AT_CATEGORY) // build new view for category 2088 else if (objectp->getType() == LLAssetType::AT_CATEGORY) // build new view for category
2089 { 2089 {