diff options
author | Richard Linden <none@none> | 2012-08-01 10:45:11 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-08-01 10:45:11 -0700 |
commit | 4256b54ee78a89dc5e790cc13556451e1a7c43fa (patch) | |
tree | 0403d46cd73027b630c98cccc5d2119859b9f213 /indra/llui | |
parent | c3bc6de8ba90216d3687f70e01e92accde956a85 (diff) |
build fix
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llfolderviewitem.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llui/llfolderviewitem.h b/indra/llui/llfolderviewitem.h index 19caa7f020..4eda02f13f 100644 --- a/indra/llui/llfolderviewitem.h +++ b/indra/llui/llfolderviewitem.h @@ -406,15 +406,12 @@ public: LLFolderViewFolder* getCommonAncestor(LLFolderViewItem* item_a, LLFolderViewItem* item_b, bool& reverse); void gatherChildRangeExclusive(LLFolderViewItem* start, LLFolderViewItem* end, bool reverse, std::vector<LLFolderViewItem*>& items); -protected: - friend void LLFolderViewItem::addToFolder(LLFolderViewFolder*); // internal functions for tracking folders and items separately // use addToFolder() virtual method to ensure folders are always added to mFolders // and not mItems void addItem(LLFolderViewItem* item); void addFolder( LLFolderViewFolder* folder); -public: //WARNING: do not call directly...use the appropriate LLFolderViewModel-derived class instead template<typename SORT_FUNC> void sortFolders(const SORT_FUNC& func) { mFolders.sort(func); } template<typename SORT_FUNC> void sortItems(const SORT_FUNC& func) { mItems.sort(func); } |