diff options
author | Nicky <sl.nicky.ml@googlemail.com> | 2016-06-01 22:29:27 +0200 |
---|---|---|
committer | Nicky <sl.nicky.ml@googlemail.com> | 2016-06-01 22:29:27 +0200 |
commit | b61d62bbf405774c3fa51a490e6d13c4288a567c (patch) | |
tree | 8a91444c8f3345862659f01eddd0f2f3fb7c6fc4 /indra/llui | |
parent | 69174fcc58e0a2e67a417c2e0060d9f36a0ba238 (diff) |
GCC compile fix (function returns a pointer, not a bool).
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index 8f7cac1f61..bbc55b785c 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -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) { |