diff options
| author | richard <none@none> | 2009-11-09 15:29:47 -0800 |
|---|---|---|
| committer | richard <none@none> | 2009-11-09 15:29:47 -0800 |
| commit | 4eb72a12a2280d3be6ac556ad80eb953d249e8eb (patch) | |
| tree | 9316784e58adc830d5cd893694698e38786af561 /indra/llui/llview.cpp | |
| parent | fac0b6836a59681443fb2bbd13e6b5eb9c07cef5 (diff) | |
data driven layout of top-level UI elements
EXT-1219 Side tray slide-out animation
cleaned up some layout of bottom tray contents
reviewed by James
Diffstat (limited to 'indra/llui/llview.cpp')
| -rw-r--r-- | indra/llui/llview.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index fe7fd59de8..da564befa9 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -1698,8 +1698,11 @@ LLView* LLView::getChildView(const std::string& name, BOOL recurse) const return child; } +static LLFastTimer::DeclareTimer FTM_FIND_VIEWS("Find Widgets"); + LLView* LLView::findChildView(const std::string& name, BOOL recurse) const { + LLFastTimer ft(FTM_FIND_VIEWS); //richard: should we allow empty names? //if(name.empty()) // return NULL; |
