aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llstatbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llstatbar.h')
-rw-r--r--linden/indra/newview/llstatbar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llstatbar.h b/linden/indra/newview/llstatbar.h
index 204a8da..d79a117 100644
--- a/linden/indra/newview/llstatbar.h
+++ b/linden/indra/newview/llstatbar.h
@@ -45,9 +45,9 @@ public:
45 virtual void draw(); 45 virtual void draw();
46 virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); 46 virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
47 47
48 const LLString& getLabel() const; 48 const std::string& getLabel() const;
49 void setLabel(const LLString& label); 49 void setLabel(const std::string& label);
50 void setUnitLabel(const LLString& unit_label); 50 void setUnitLabel(const std::string& unit_label);
51 /*virtual*/ LLRect getRequiredRect(); // Return the height of this object, given the set options. 51 /*virtual*/ LLRect getRequiredRect(); // Return the height of this object, given the set options.
52 52
53 F32 mMinBar; 53 F32 mMinBar;
@@ -64,8 +64,8 @@ public:
64 LLStat *mStatp; 64 LLStat *mStatp;
65private: 65private:
66 LLFrameTimer mUpdateTimer; 66 LLFrameTimer mUpdateTimer;
67 LLString mLabel; 67 std::string mLabel;
68 LLString mUnitLabel; 68 std::string mUnitLabel;
69 F32 mValue; 69 F32 mValue;
70}; 70};
71 71