diff options
Diffstat (limited to 'indra/newview/llinventorypanel.h')
-rw-r--r-- | indra/newview/llinventorypanel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llinventorypanel.h b/indra/newview/llinventorypanel.h index f323a6c6d7..7b54a5bbf2 100644 --- a/indra/newview/llinventorypanel.h +++ b/indra/newview/llinventorypanel.h @@ -421,6 +421,7 @@ public: std::list<LLUUID> getNavForwardList() { return mForwardFolders; } void setSelectCallback(const boost::function<void (const std::deque<LLFolderViewItem*>& items, BOOL user_action)>& cb); + void setScroller(LLScrollContainer* scroller) { mExternalScroller = scroller; } typedef boost::function<void()> root_changed_callback_t; boost::signals2::connection setRootChangedCallback(root_changed_callback_t cb); @@ -436,6 +437,7 @@ protected: LLUUID mFolderID; std::list<LLUUID> mBackwardFolders; std::list<LLUUID> mForwardFolders; + LLScrollContainer* mExternalScroller; boost::signals2::signal<void()> mRootChangedSignal; }; |