onVisibilityChange renamed to handleVisibilityChange

This commit is contained in:
Shyotl
2011-10-13 17:17:57 -05:00
parent 7bbbfd9a9b
commit d6d8681874
14 changed files with 22 additions and 22 deletions

View File

@@ -194,13 +194,13 @@ void LLPanelDirFind::draw()
// When we show any browser-based view, we want to hide all
// the right-side XUI detail panels.
// virtual
void LLPanelDirFind::onVisibilityChange(BOOL new_visibility)
void LLPanelDirFind::handleVisibilityChange(BOOL new_visibility)
{
if (new_visibility)
{
mFloaterDirectory->hideAllDetailPanels();
}
LLPanel::onVisibilityChange(new_visibility);
LLPanel::handleVisibilityChange(new_visibility);
}
// virtual