CID-416
Checker: NULL_RETURNS Function: LLTabContainer::onTabBtn(const LLSD &, LLPanel *) File: /indra/llui/lltabcontainer.cppmaster
parent
4cad6333ab
commit
3acf25d5fc
|
|
@ -1590,7 +1590,10 @@ void LLTabContainer::onTabBtn( const LLSD& data, LLPanel* panel )
|
|||
LLTabTuple* tuple = getTabByPanel(panel);
|
||||
selectTabPanel( panel );
|
||||
|
||||
tuple->mTabPanel->setFocus(TRUE);
|
||||
if (tuple)
|
||||
{
|
||||
tuple->mTabPanel->setFocus(TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
void LLTabContainer::onNextBtn( const LLSD& data )
|
||||
|
|
|
|||
Loading…
Reference in New Issue