diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2009-11-11 11:13:23 +0000 |
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2009-11-11 11:13:23 +0000 |
| commit | 3be220b365346c06ad5dcd110ed18719b1097ef7 (patch) | |
| tree | d8a663de234a09315aaeaa95b42db4aafc0a9212 /indra/newview/llimview.cpp | |
| parent | 3cfd8a7ae8fb760fccfc992d8185db7bb37ff4ec (diff) | |
| parent | 162924aadfb6a7312287d91a25a129885239c0a4 (diff) | |
merge
Diffstat (limited to 'indra/newview/llimview.cpp')
| -rw-r--r-- | indra/newview/llimview.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 476d312c69..14f94d5a88 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -862,7 +862,17 @@ bool LLIMModel::sendStartSession( return false; } - +// static +void LLIMModel::sendSessionInitialized(const LLUUID &session_id) +{ + LLIMSession* session = getInstance()->findIMSession(session_id); + if (session) + { + LLSD arg; + arg["session_id"] = session_id; + getInstance()->mSessionInitializedSignal(arg); + } +} // // Helper Functions |
