summaryrefslogtreecommitdiff
path: root/indra/llui/llview.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2011-03-09 15:26:56 -0800
committerRichard Linden <none@none>2011-03-09 15:26:56 -0800
commit7cecf9ed8dcd1d6b657e7565c47ff6b64f1f77d8 (patch)
treed62fa2d286ab39cdf160b76714b5461f244c0655 /indra/llui/llview.cpp
parent7e70e8ba5b49f85186ed9d1bd124cd847ea032cc (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.cpp2
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();
}