diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llstatview.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llstatview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llstatview.h b/linden/indra/newview/llstatview.h index cff5809..2588f44 100644 --- a/linden/indra/newview/llstatview.h +++ b/linden/indra/newview/llstatview.h | |||
@@ -41,7 +41,7 @@ class LLStatBar; | |||
41 | class LLStatView : public LLContainerView | 41 | class LLStatView : public LLContainerView |
42 | { | 42 | { |
43 | public: | 43 | public: |
44 | LLStatView(const LLString& name, const LLString& label, const LLString& setting, const LLRect& rect); | 44 | LLStatView(const std::string& name, const std::string& label, const std::string& setting, const LLRect& rect); |
45 | ~LLStatView(); | 45 | ~LLStatView(); |
46 | 46 | ||
47 | /* | 47 | /* |
@@ -50,13 +50,13 @@ public: | |||
50 | virtual LLRect getRequiredRect(); // Return the height of this object, given the set options. | 50 | virtual LLRect getRequiredRect(); // Return the height of this object, given the set options. |
51 | */ | 51 | */ |
52 | 52 | ||
53 | LLStatBar *addStat(const LLString& name, LLStat *statp); | 53 | LLStatBar *addStat(const std::string& name, LLStat *statp); |
54 | LLStatBar *getStatBar(const LLString& name); | 54 | LLStatBar *getStatBar(const std::string& name); |
55 | 55 | ||
56 | protected: | 56 | protected: |
57 | typedef std::vector<LLStatBar *> sb_vector_t; | 57 | typedef std::vector<LLStatBar *> sb_vector_t; |
58 | sb_vector_t mStatBars; | 58 | sb_vector_t mStatBars; |
59 | U32 mNumStatBars; | 59 | U32 mNumStatBars; |
60 | LLString mSetting; | 60 | std::string mSetting; |
61 | }; | 61 | }; |
62 | #endif // LL_STATVIEW_ | 62 | #endif // LL_STATVIEW_ |