diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-07-13 17:52:42 +0300 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-07-13 17:52:42 +0300 |
commit | 33c5a3974c210af259d3572193bcdcd65137d888 (patch) | |
tree | 1dff1c7a1a87c9774098e7300408cc2e30f1bc03 /indra/newview/llnotificationlistitem.h | |
parent | cff5f2a92412dd094e335a17b7957b0270600371 (diff) |
MAINT-5369 FIXED Unable to accept group invite using Notification floater
Diffstat (limited to 'indra/newview/llnotificationlistitem.h')
-rw-r--r-- | indra/newview/llnotificationlistitem.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llnotificationlistitem.h b/indra/newview/llnotificationlistitem.h index f8d9fc0330..6801e77342 100644 --- a/indra/newview/llnotificationlistitem.h +++ b/indra/newview/llnotificationlistitem.h @@ -46,6 +46,7 @@ public: struct Params : public LLInitParam::Block<Params, LLPanel::Params> { LLUUID notification_id; + LLUUID transaction_id; LLUUID group_id; LLUUID paid_from_id; LLUUID paid_to_id; @@ -160,6 +161,15 @@ private: LLGroupInviteNotificationListItem & operator=(LLGroupInviteNotificationListItem &); void setFee(S32 fee); + + void onClickJoinBtn(); + void onClickDeclineBtn(); + void onClickInfoBtn(); + + LLPanel* mInviteButtonPanel; + LLButton* mJoinBtn; + LLButton* mDeclineBtn; + LLButton* mInfoBtn; }; class LLGroupNoticeNotificationListItem |