Update for normal task EXT-2081 - Object IM chiclets art needs to be hooked up to LLDialog chiclets.
Fixed function names. --HG-- branch : product-enginemaster
parent
13a6077b78
commit
9d64bf132e
|
|
@ -120,7 +120,7 @@ bool LLScriptHandler::processNotification(const LLSD& notify)
|
|||
mChannel->killToastByNotificationID(notification->getID());
|
||||
if("ScriptDialog" == notification->getName())
|
||||
{
|
||||
LLScriptFloaterManager::getInstance()->removeNotification(notification->getID());
|
||||
LLScriptFloaterManager::getInstance()->onRemoveNotification(notification->getID());
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@ void LLScriptFloaterManager::onAddNotification(const LLUUID& notification_id)
|
|||
script_notification_map_t::iterator it = mNotifications.find(object_id);
|
||||
if(it != mNotifications.end())
|
||||
{
|
||||
removeNotification(notification_id);
|
||||
onRemoveNotification(notification_id);
|
||||
}
|
||||
|
||||
LLNotificationData nd = {notification_id};
|
||||
|
|
@ -275,7 +275,7 @@ void LLScriptFloaterManager::closeScriptFloater(const LLUUID& object_id)
|
|||
getNotificationId(object_id));
|
||||
if(notification)
|
||||
{
|
||||
removeNotification(notification->getID());
|
||||
onRemoveNotification(notification->getID());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue