summaryrefslogtreecommitdiff
path: root/indra/llui/llview.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-06-22 18:32:34 -0700
committerRichard Linden <none@none>2010-06-22 18:32:34 -0700
commit1683c7c6e99814e101312aad38718d393a2605e3 (patch)
tree9c54140dc9507aa655d930d1f54e16ee9384a08a /indra/llui/llview.h
parent11ec720a063b73fc042e8b06338b9526835dbb6b (diff)
parent6e961cd9f244bc979f653c8ee468617c280d0e9e (diff)
merge
Diffstat (limited to 'indra/llui/llview.h')
-rw-r--r--indra/llui/llview.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llview.h b/indra/llui/llview.h
index 3779fedf34..9ff6a4e1a0 100644
--- a/indra/llui/llview.h
+++ b/indra/llui/llview.h
@@ -148,6 +148,8 @@ public:
Ignored user_resize,
auto_resize,
needs_translate,
+ min_width,
+ max_width,
xmlns,
xmlns_xsi,
xsi_schemaLocation,
@@ -634,7 +636,7 @@ template <class T> T* LLView::getChild(const std::string& name, BOOL recurse) co
// did we find *something* with that name?
if (child)
{
- llwarns << "Found child named " << name << " but of wrong type " << typeid(*child).name() << ", expecting " << typeid(T*).name() << llendl;
+ llwarns << "Found child named \"" << name << "\" but of wrong type " << typeid(*child).name() << ", expecting " << typeid(T*).name() << llendl;
}
result = getDefaultWidget<T>(name);
if (!result)