GCC compile fix (function returns a pointer, not a bool).

master
Nicky 2016-06-01 22:29:27 +02:00
parent 69174fcc58
commit b61d62bbf4
1 changed files with 1 additions and 1 deletions

View File

@ -807,7 +807,7 @@ LLView* LLView::childrenHandleHover(S32 x, S32 y, MASK mask)
LLView* LLView::childFromPoint(S32 x, S32 y, bool recur)
{
if (!getVisible())
return false;
return NULL;
BOOST_FOREACH(LLView* viewp, mChildList)
{