diff options
author | Richard Linden <none@none> | 2012-06-19 22:36:12 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-06-19 22:36:12 -0700 |
commit | 9e49fb558f894a1960d208114b8c051536f58c9e (patch) | |
tree | c36d1626b2fbd546c29485cdb3066fa565e40082 /indra/newview/lltexturectrl.cpp | |
parent | 4d258b7d3b020c54239930509d8bad7abccf50f9 (diff) |
CHUI-101 WIP Make LLFolderview general purpose
added more casts to LLFolderViewModelItemInventory, etc. to fix compile errors
Diffstat (limited to 'indra/newview/lltexturectrl.cpp')
-rw-r--r-- | indra/newview/lltexturectrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltexturectrl.cpp b/indra/newview/lltexturectrl.cpp index a995f07df7..b7fa283dd2 100644 --- a/indra/newview/lltexturectrl.cpp +++ b/indra/newview/lltexturectrl.cpp @@ -623,7 +623,7 @@ void LLFloaterTexturePicker::draw() LLFolderView* folder_view = mInventoryPanel->getRootFolder(); if (!folder_view) return; - LLInventoryFilter* filter = folder_view->getFilter(); + LLInventoryFilter* filter = static_cast<LLInventoryFilter*>(folder_view->getFilter()); if (!filter) return; bool is_filter_active = folder_view->getCompletedFilterGeneration() < filter->getCurrentGeneration() && |