aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llstatgraph.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llstatgraph.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llstatgraph.h b/linden/indra/newview/llstatgraph.h
index db0e1ca..73e0ba0 100644
--- a/linden/indra/newview/llstatgraph.h
+++ b/linden/indra/newview/llstatgraph.h
@@ -45,8 +45,8 @@ public:
45 45
46 virtual void draw(); 46 virtual void draw();
47 47
48 void setLabel(const char *label); 48 void setLabel(const std::string& label);
49 void setUnits(const char *units); 49 void setUnits(const std::string& units);
50 void setPrecision(const S32 precision); 50 void setPrecision(const S32 precision);
51 void setStat(LLStat *statp); 51 void setStat(LLStat *statp);
52 void setThreshold(const S32 i, F32 value); 52 void setThreshold(const S32 i, F32 value);
@@ -63,8 +63,8 @@ private:
63 F32 mMin; 63 F32 mMin;
64 F32 mMax; 64 F32 mMax;
65 LLFrameTimer mUpdateTimer; 65 LLFrameTimer mUpdateTimer;
66 LLString mLabel; 66 std::string mLabel;
67 LLString mUnits; 67 std::string mUnits;
68 S32 mPrecision; // Num of digits of precision after dot 68 S32 mPrecision; // Num of digits of precision after dot
69 69
70 S32 mNumThresholds; 70 S32 mNumThresholds;