diff options
author | Richard Linden <none@none> | 2013-10-23 13:24:47 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-10-23 13:24:47 -0700 |
commit | ab43be5ddb50198304de1ae0e82b641c7d343449 (patch) | |
tree | e6a54d948e4abff50d025016d7e869b8da1b5d00 /indra/newview/llfasttimerview.cpp | |
parent | e06ad3d60f944911f7bb30a9e362e39a5042a40b (diff) |
moved some common functionality from LLTrace::BlockTimerStatHandle to BlockTimer
updates appearance utility dependency
Diffstat (limited to 'indra/newview/llfasttimerview.cpp')
-rwxr-xr-x | indra/newview/llfasttimerview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index 302cecb5b6..bd92b4b6ca 100755 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -924,13 +924,13 @@ void LLFastTimerView::outputAllMetrics() //static void LLFastTimerView::doAnalysis(std::string baseline, std::string target, std::string output) { - if(BlockTimerStatHandle::sLog) + if(BlockTimer::sLog) { doAnalysisDefault(baseline, target, output) ; return ; } - if(BlockTimerStatHandle::sMetricLog) + if(BlockTimer::sMetricLog) { LLMetricPerformanceTesterBasic::doAnalysisMetrics(baseline, target, output) ; return ; |