diff options
author | Richard Linden <none@none> | 2011-03-09 15:26:56 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2011-03-09 15:26:56 -0800 |
commit | 7cecf9ed8dcd1d6b657e7565c47ff6b64f1f77d8 (patch) | |
tree | d62fa2d286ab39cdf160b76714b5461f244c0655 /indra/llui/llview.cpp | |
parent | 7e70e8ba5b49f85186ed9d1bd124cd847ea032cc (diff) |
SOCIAL-659 WIP Viewer crash when selecting report option from mini-inspector in minimal and standard skin
turned error into warning when removing non-existent child
Diffstat (limited to 'indra/llui/llview.cpp')
-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 acf7953906..d73e87129e 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -338,7 +338,7 @@ void LLView::removeChild(LLView* child) } else { - llerrs << "LLView::removeChild called with non-child" << llendl; + llwarns << child->getName() << "is not a child of " << getName() << llendl; } updateBoundingRect(); } |