Fixed LLControlGroup::get() template to not crash on missing items. Reviewed

by Kelly
master
simon@Simon-PC.lindenlab.com 2012-10-02 09:31:38 -07:00
parent 5f75cf5777
commit 7e7f183f0a
1 changed files with 1 additions and 0 deletions

View File

@ -254,6 +254,7 @@ public:
else
{
llwarns << "Control " << name << " not found." << llendl;
return T();
}
return convert_from_llsd<T>(value, type, name);
}