diff options
author | Merov Linden <merov@lindenlab.com> | 2014-03-04 11:30:58 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-03-04 11:30:58 -0800 |
commit | 013d72cc90d5c038f9cffca28dbd0660a4e05c22 (patch) | |
tree | f835c579fa038b3d41991f82df50064aa36c6398 /indra/newview/llfloaterfacebook.cpp | |
parent | 66287bf951485edbba81039f88183a8bce769ad2 (diff) |
ACME-1342 : Fix wrong type when getting friends_accordion in resources
Diffstat (limited to 'indra/newview/llfloaterfacebook.cpp')
-rw-r--r-- | indra/newview/llfloaterfacebook.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterfacebook.cpp b/indra/newview/llfloaterfacebook.cpp index a0b5b3e22d..c60782cc87 100644 --- a/indra/newview/llfloaterfacebook.cpp +++ b/indra/newview/llfloaterfacebook.cpp @@ -834,7 +834,7 @@ void LLFacebookFriendsPanel::showFriendsAccordionsIfNeeded() mFriendsStatusCaption->setText(getString("facebook_friends_no_connected")); } // Hide the lists - getChild<LLAccordionCtrlTab>("friends_accordion")->setVisible(false); + getChild<LLAccordionCtrl>("friends_accordion")->setVisible(false); getChild<LLAccordionCtrlTab>("tab_second_life_friends")->setVisible(false); getChild<LLAccordionCtrlTab>("tab_suggested_friends")->setVisible(false); } |