diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-11-04 14:26:45 +0200 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-11-04 14:26:45 +0200 |
commit | 6698c134b2c83b317df302f7b2f8f94124fc12e0 (patch) | |
tree | 28fb5e436f6cb183116f39c6d7fc9d0bff0365f6 /indra/newview/llimfloater.cpp | |
parent | 8bd0c9058d3d24218cf59dd01f152b41240853a4 (diff) | |
parent | 7ad64438430de9a26d2c7c790eb196db4817f259 (diff) |
merge
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llimfloater.cpp')
-rw-r--r-- | indra/newview/llimfloater.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 7bad949921..19fa66fd0e 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -236,7 +236,10 @@ BOOL LLIMFloater::postBuild() mChatHistory = getChild<LLChatHistory>("chat_history"); - setTitle(LLIMModel::instance().getName(mSessionID)); + std::string session_name(LLIMModel::instance().getName(mSessionID)); + LLStringUtil::toUpper(session_name); + setTitle(session_name); + setDocked(true); mTypingStart = LLTrans::getString("IM_typing_start_string"); |