diff options
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llstatgraph.cpp | 2 | ||||
-rw-r--r-- | indra/llui/llstatgraph.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/indra/llui/llstatgraph.cpp b/indra/llui/llstatgraph.cpp index be3baeea76..e961e7d3c0 100644 --- a/indra/llui/llstatgraph.cpp +++ b/indra/llui/llstatgraph.cpp @@ -49,7 +49,7 @@ LLStatGraph::LLStatGraph(const Params& p) mPrecision(p.precision), mValue(p.value), mStatp(p.stat.legacy_stat), - mNewStatp(p.stat.rate_stat) + mNewStatp(p.stat.count_stat) { setToolTip(p.name()); diff --git a/indra/llui/llstatgraph.h b/indra/llui/llstatgraph.h index 54a959f49e..5bbd9e9d24 100644 --- a/indra/llui/llstatgraph.h +++ b/indra/llui/llstatgraph.h @@ -60,7 +60,8 @@ public: struct StatParams : public LLInitParam::ChoiceBlock<StatParams> { Alternative<LLStat*> legacy_stat; - Alternative<LLTrace::Count<>* > rate_stat; + Alternative<LLTrace::Count<>* > count_stat; + Alternative<LLTrace::Measurement<>* > measurement_stat; }; struct Params : public LLInitParam::Block<Params, LLView::Params> |