diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/lldonotdisturbnotificationstorage.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llnotificationstorage.cpp | 7 | ||||
| -rwxr-xr-x | indra/newview/llviewermessage.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llviewermessage.h | 1 | 
4 files changed, 6 insertions, 7 deletions
| diff --git a/indra/newview/lldonotdisturbnotificationstorage.cpp b/indra/newview/lldonotdisturbnotificationstorage.cpp index f4560d5668..6407a3fa0c 100644 --- a/indra/newview/lldonotdisturbnotificationstorage.cpp +++ b/indra/newview/lldonotdisturbnotificationstorage.cpp @@ -118,7 +118,7 @@ void LLDoNotDisturbNotificationStorage::loadNotifications()  		}  		else  		{ -			LLNotificationResponderInterface* responder = createResponder(notification_params["name"], notification_params["responder"]); +			LLNotificationResponderInterface* responder = createResponder(notification_params["responder_sd"]["responder_type"], notification_params["responder_sd"]);  			if (responder == NULL)  			{  				LL_WARNS("LLDoNotDisturbNotificationStorage") << "cannot create responder for notification of type '" diff --git a/indra/newview/llnotificationstorage.cpp b/indra/newview/llnotificationstorage.cpp index b797775369..4c5b7cc198 100644 --- a/indra/newview/llnotificationstorage.cpp +++ b/indra/newview/llnotificationstorage.cpp @@ -126,13 +126,8 @@ LLResponderRegistry::LLResponderRegistry()  	, mBuildMap()  {  	add("ObjectGiveItem", &create<LLOfferInfo>); -	add("OwnObjectGiveItem", &create<LLOfferInfo>);  	add("UserGiveItem", &create<LLOfferInfo>); - -	add("TeleportOffered", &create<LLOfferInfo>); -	add("TeleportOffered_MaturityExceeded", &create<LLOfferInfo>); - -	add("OfferFriendship", &create<LLOfferInfo>); +    add("offer_info", &create<LLOfferInfo>);  }  LLResponderRegistry::~LLResponderRegistry() diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 04dd7c911b..d264a18597 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -1361,6 +1361,8 @@ void inventory_offer_mute_callback(const LLUUID& blocked_id,  			gSavedSettings.getString("NotificationChannelUUID")), OfferMatcher(blocked_id));  } +std::string LLOfferInfo::mResponderType = "offer_info"; +  LLOfferInfo::LLOfferInfo()   : LLNotificationResponderInterface()   , mFromGroup(FALSE) @@ -1406,6 +1408,7 @@ LLOfferInfo::LLOfferInfo(const LLOfferInfo& info)  LLSD LLOfferInfo::asLLSD()  {  	LLSD sd; +    sd["responder_type"] = mResponderType;  	sd["im_type"] = mIM;  	sd["from_id"] = mFromID;  	sd["from_group"] = mFromGroup; diff --git a/indra/newview/llviewermessage.h b/indra/newview/llviewermessage.h index 447fdeb9c7..3237f3fbdd 100644 --- a/indra/newview/llviewermessage.h +++ b/indra/newview/llviewermessage.h @@ -229,6 +229,7 @@ public:  	void forceResponse(InventoryOfferResponse response); +    static std::string mResponderType;  	EInstantMessage mIM;  	LLUUID mFromID;  	BOOL mFromGroup; | 
