summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Mutavchi <emutavchi@productengine.com>2009-11-04 22:37:46 +0200
committerEugene Mutavchi <emutavchi@productengine.com>2009-11-04 22:37:46 +0200
commit15df55ecafd2f6d72f25988401ddb7ed58030b79 (patch)
tree53bfbec3e9e665d797ef732a242f022e79b06fe2
parent8c27615aa5c1fc61fa0a5877717699d5df47476d (diff)
No ticket, removed unnecessary warnings from 3d35bc1f0cc6 commit.
--HG-- branch : product-engine
-rw-r--r--indra/newview/llpanelimcontrolpanel.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/llpanelimcontrolpanel.cpp b/indra/newview/llpanelimcontrolpanel.cpp
index 76612f2dd1..c9168670d5 100644
--- a/indra/newview/llpanelimcontrolpanel.cpp
+++ b/indra/newview/llpanelimcontrolpanel.cpp
@@ -170,7 +170,7 @@ void LLPanelIMControlPanel::setSessionId(const LLUUID& session_id)
// Fetch the currect name
gCacheName->get(mAvatarID, FALSE, boost::bind(&LLPanelIMControlPanel::nameUpdatedCallback, this, _1, _2, _3, _4));
- llwarns << "gCacheName->get" << llendl;
+
// Disable profile button if participant is not realy SL avatar
LLIMModel::LLIMSession* im_session =
im_model.findIMSession(session_id);
@@ -180,10 +180,8 @@ void LLPanelIMControlPanel::setSessionId(const LLUUID& session_id)
void LLPanelIMControlPanel::nameUpdatedCallback(const LLUUID& id, const std::string& first, const std::string& last, BOOL is_group)
{
- llwarns << "LLPanelIMControlPanel::nameUpdatedCallback" << llendl;
if ( id == mAvatarID )
{
- llwarns << "LLPanelIMControlPanel::nameUpdatedCallback id == mAvatarID" << llendl;
std::string avatar_name;
avatar_name.assign(first);
avatar_name.append(" ");