diff options
author | Oz Linden <oz@lindenlab.com> | 2014-05-07 15:18:44 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-05-07 15:18:44 -0400 |
commit | 1e851a2eb70e5f6b12a47c382efb3b9b17674993 (patch) | |
tree | 297b84f95af4c0fefd08e5c48159b69f7739be76 /indra/llui/llkeywords.cpp | |
parent | a98b4b6bee1b062722ce5eb03948a0fd33b74265 (diff) |
correct bad merges from 3.7.7-release
Diffstat (limited to 'indra/llui/llkeywords.cpp')
-rwxr-xr-x | indra/llui/llkeywords.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llkeywords.cpp b/indra/llui/llkeywords.cpp index 07c84e57c0..c79468ba5b 100755 --- a/indra/llui/llkeywords.cpp +++ b/indra/llui/llkeywords.cpp @@ -523,13 +523,13 @@ LLColor4 LLKeywords::readColor(LLSD& sd) } } -LLFastTimer::DeclareTimer FTM_SYNTAX_COLORING("Syntax Coloring"); +LLTrace::BlockTimerStatHandle FTM_SYNTAX_COLORING("Syntax Coloring"); // Walk through a string, applying the rules specified by the keyword token list and // create a list of color segments. void LLKeywords::findSegments(std::vector<LLTextSegmentPtr>* seg_list, const LLWString& wtext, const LLColor4 &defaultColor, LLTextEditor& editor) { - LLFastTimer ft(FTM_SYNTAX_COLORING); + LL_RECORD_BLOCK_TIME(FTM_SYNTAX_COLORING); seg_list->clear(); if( wtext.empty() ) |