Skip to content
Snippets Groups Projects
Commit c83aa5ba authored by Mike Antipov's avatar Mike Antipov
Browse files

Fixed wrong type for getChild<LLTextBox>("user_name") to prevent WARNING logging.

--HG--
branch : product-engine
parent f0426b92
No related branches found
No related tags found
No related merge requests found
......@@ -302,7 +302,7 @@ class LLChatHistoryHeader: public LLPanel
time_box->translate(delta_pos_x, delta_pos_y);
//... & change width of the name control
LLTextBox* user_name = getChild<LLTextBox>("user_name");
LLView* user_name = getChild<LLView>("user_name");
const LLRect& user_rect = user_name->getRect();
user_name->reshape(user_rect.getWidth() + delta_pos_x, user_rect.getHeight());
}
......
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