diff options
author | Merov Linden <merov@lindenlab.com> | 2012-11-02 11:01:08 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-11-02 11:01:08 -0700 |
commit | ef5121ffb309c0317a4eb478e9527d33441377c2 (patch) | |
tree | 27f00f34caa4860416ed1ffc1e811df65392df1d /indra/newview/llimconversation.cpp | |
parent | 7f2ea292e10b10958b3e00a641b50b194f131e41 (diff) |
CHUI-481 : WIP : Make updateSessionName() a virtual method of LLIMConversation so we can eventually call it on events
Diffstat (limited to 'indra/newview/llimconversation.cpp')
-rw-r--r-- | indra/newview/llimconversation.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llimconversation.cpp b/indra/newview/llimconversation.cpp index aee6642150..a6a246a01e 100644 --- a/indra/newview/llimconversation.cpp +++ b/indra/newview/llimconversation.cpp @@ -508,6 +508,12 @@ void LLIMConversation::hideOrShowTitle() floater_contents->setShape(contents_rect); } +void LLIMConversation::updateSessionName(const std::string& name) +{ + llinfos << "Merov debug : updateSessionName, name = " << name << llendl; + mInputEditor->setLabel(LLTrans::getString("IM_to_label") + " " + name); +} + void LLIMConversation::hideAllStandardButtons() { for (S32 i = 0; i < BUTTON_COUNT; i++) |