Skip to content
Snippets Groups Projects
Commit 15df55ec authored by Eugene Mutavchi's avatar Eugene Mutavchi
Browse files

No ticket, removed unnecessary warnings from 3d35bc1f0cc6 commit.

--HG--
branch : product-engine
parent 8c27615a
No related branches found
No related tags found
No related merge requests found
...@@ -170,7 +170,7 @@ void LLPanelIMControlPanel::setSessionId(const LLUUID& session_id) ...@@ -170,7 +170,7 @@ void LLPanelIMControlPanel::setSessionId(const LLUUID& session_id)
// Fetch the currect name // Fetch the currect name
gCacheName->get(mAvatarID, FALSE, boost::bind(&LLPanelIMControlPanel::nameUpdatedCallback, this, _1, _2, _3, _4)); 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 // Disable profile button if participant is not realy SL avatar
LLIMModel::LLIMSession* im_session = LLIMModel::LLIMSession* im_session =
im_model.findIMSession(session_id); im_model.findIMSession(session_id);
...@@ -180,10 +180,8 @@ void LLPanelIMControlPanel::setSessionId(const LLUUID& 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) void LLPanelIMControlPanel::nameUpdatedCallback(const LLUUID& id, const std::string& first, const std::string& last, BOOL is_group)
{ {
llwarns << "LLPanelIMControlPanel::nameUpdatedCallback" << llendl;
if ( id == mAvatarID ) if ( id == mAvatarID )
{ {
llwarns << "LLPanelIMControlPanel::nameUpdatedCallback id == mAvatarID" << llendl;
std::string avatar_name; std::string avatar_name;
avatar_name.assign(first); avatar_name.assign(first);
avatar_name.append(" "); avatar_name.append(" ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment