diff options
| author | maxim_productengine <mnikolenko@productengine.com> | 2018-08-22 18:02:31 +0300 |
|---|---|---|
| committer | maxim_productengine <mnikolenko@productengine.com> | 2018-08-22 18:02:31 +0300 |
| commit | 36594400a2ea20d7a404172c3ab6a01b0228a29d (patch) | |
| tree | 956d89f497c06dd8f8166f44d0ee8d952e5dc63f /indra/llui/llscrolllistctrl.h | |
| parent | e041ffc5ff7136ccb52b91b9ee05b18b46516283 (diff) | |
MAINT-8985 FIXED User is able to send friendship request to a friend from the group menu
Diffstat (limited to 'indra/llui/llscrolllistctrl.h')
| -rw-r--r-- | indra/llui/llscrolllistctrl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llscrolllistctrl.h b/indra/llui/llscrolllistctrl.h index 699a8744e1..b35a8608e7 100644 --- a/indra/llui/llscrolllistctrl.h +++ b/indra/llui/llscrolllistctrl.h @@ -90,6 +90,7 @@ public: typedef boost::signals2::signal<S32 (S32,const LLScrollListItem*,const LLScrollListItem*),maximum<S32> > sort_signal_t; + typedef boost::signals2::signal<bool(const LLUUID& user_id)> is_friend_signal_t; struct Params : public LLInitParam::Block<Params, LLUICtrl::Params> { @@ -393,6 +394,8 @@ public: return mSortCallback->connect(cb); } + boost::signals2::connection setIsFriendCallback(const is_friend_signal_t::slot_type& cb); + protected: // "Full" interface: use this when you're creating a list that has one or more of the following: @@ -515,6 +518,8 @@ private: std::vector<sort_column_t> mSortColumns; sort_signal_t* mSortCallback; + + is_friend_signal_t* mIsFriendSignal; }; // end class LLScrollListCtrl #endif // LL_SCROLLLISTCTRL_H |
