aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llframestatview.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llframestatview.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llframestatview.h b/linden/indra/newview/llframestatview.h
index 2528891..2491a83 100644
--- a/linden/indra/newview/llframestatview.h
+++ b/linden/indra/newview/llframestatview.h
@@ -61,11 +61,11 @@ public:
61 F32 mLabelSpacing; 61 F32 mLabelSpacing;
62 S32 mCenterOn; 62 S32 mCenterOn;
63 BOOL mShowPercent; 63 BOOL mShowPercent;
64 void addStat(LLStat *statp, const char *label, const LLColor4 &color); 64 void addStat(LLStat *statp, const std::string& label, const LLColor4 &color);
65private: 65private:
66 LLStat *mStats[MAX_STATS]; 66 LLStat *mStats[MAX_STATS];
67 LLColor4 mColors[MAX_STATS]; 67 LLColor4 mColors[MAX_STATS];
68 const char *mLabels[MAX_STATS]; /* Flawfinder: ignore */ 68 std::string mLabels[MAX_STATS];
69 S32 mNumStats; 69 S32 mNumStats;
70}; 70};
71 71