summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorypanel.cpp
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2009-12-03 10:45:55 -0500
committerNyx (Neal Orman) <nyx@lindenlab.com>2009-12-03 10:45:55 -0500
commit0cfc3af9aceede80230c7f2b36fb7fdcf0fcc179 (patch)
treef856296e1d6082aff1526e6a3a789103c9aeb1e6 /indra/newview/llinventorypanel.cpp
parent9841edf0f4b82744ac7790e6c4887e50ce389ecf (diff)
fixing bad cast that was causing a compiler error.
Code reviewed by Seraph --HG-- branch : avatar-pipeline
Diffstat (limited to 'indra/newview/llinventorypanel.cpp')
-rw-r--r--indra/newview/llinventorypanel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp
index 88e7196ce6..baa659df7c 100644
--- a/indra/newview/llinventorypanel.cpp
+++ b/indra/newview/llinventorypanel.cpp
@@ -547,7 +547,7 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id)
cat_iter != categories->end();
++cat_iter)
{
- const LLInventoryCategory* cat = (*cat_iter);
+ const LLViewerInventoryCategory* cat = (*cat_iter);
buildNewViews(cat->getUUID());
}
}
@@ -558,7 +558,7 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id)
item_iter != items->end();
++item_iter)
{
- const LLInventoryItem* item = (*item_iter);
+ const LLViewerInventoryItem* item = (*item_iter);
buildNewViews(item->getUUID());
}
}