diff options
author | Nyx (Neal Orman) <nyx@lindenlab.com> | 2009-12-09 11:34:44 -0500 |
---|---|---|
committer | Nyx (Neal Orman) <nyx@lindenlab.com> | 2009-12-09 11:34:44 -0500 |
commit | 019fc578550fd93eb404dd1ddab2b629bd0688fe (patch) | |
tree | 131b877c7c4a26a598d3415641ef53649d6e7735 /indra | |
parent | e6f1604549f90ad92a5556a84d3c609f3b683069 (diff) |
fix for linux build breakage, a LLPointer was being implicitly cast wrong
approved by Seraph
--HG--
branch : avatar-pipeline
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index ea47013781..3746e9cfeb 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2280,7 +2280,7 @@ bool LLFolderBridge::removeItemResponse(const LLSD& notification, const LLSD& re iter != descendent_items.end(); ++iter) { - const LLInventoryItem* item = (*iter); + const LLViewerInventoryItem* item = (*iter); const LLUUID& item_id = item->getUUID(); if (item->getType() == LLAssetType::AT_GESTURE && LLGestureManager::instance().isGestureActive(item_id)) |