diff options
| author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-11-04 23:15:06 +0200 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-11-05 11:27:22 +0200 |
| commit | c8d08ee388ff8c968802412db134136c529e5bca (patch) | |
| tree | 2c340cbcbe0f763e152dcedefafa316c7293c5e6 /indra/newview/llconversationloglistitem.cpp | |
| parent | 695203be48ab0c0a780812d519af98ed6c08390d (diff) | |
#4931 Fix name cache callbacks not having connections
Diffstat (limited to 'indra/newview/llconversationloglistitem.cpp')
| -rw-r--r-- | indra/newview/llconversationloglistitem.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llconversationloglistitem.cpp b/indra/newview/llconversationloglistitem.cpp index 20d5b0175b..e21a772f67 100644 --- a/indra/newview/llconversationloglistitem.cpp +++ b/indra/newview/llconversationloglistitem.cpp @@ -53,7 +53,10 @@ LLConversationLogListItem::LLConversationLogListItem(const LLConversation* conve if (mConversation->hasOfflineMessages() && !ims_are_read) { - mIMFloaterShowedConnection = LLFloaterIMSession::setIMFloaterShowedCallback(boost::bind(&LLConversationLogListItem::onIMFloaterShown, this, _1)); + mIMFloaterShowedConnection = LLFloaterIMSession::setIMFloaterShowedCallback([this](const LLUUID& session_id) + { + onIMFloaterShown(session_id); + }); } } |
