diff options
Diffstat (limited to 'linden/indra/newview/llstatview.cpp')
-rw-r--r-- | linden/indra/newview/llstatview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llstatview.cpp b/linden/indra/newview/llstatview.cpp index 221c4e1..84d4d83 100644 --- a/linden/indra/newview/llstatview.cpp +++ b/linden/indra/newview/llstatview.cpp | |||
@@ -42,7 +42,7 @@ | |||
42 | #include "llstatbar.h" | 42 | #include "llstatbar.h" |
43 | #include "llviewercontrol.h" | 43 | #include "llviewercontrol.h" |
44 | 44 | ||
45 | LLStatView::LLStatView(const LLString& name, const LLString& label, const LLString& setting, const LLRect& rect) | 45 | LLStatView::LLStatView(const std::string& name, const std::string& label, const std::string& setting, const LLRect& rect) |
46 | : LLContainerView(name, rect), | 46 | : LLContainerView(name, rect), |
47 | mNumStatBars(0), | 47 | mNumStatBars(0), |
48 | mSetting(setting) | 48 | mSetting(setting) |
@@ -67,7 +67,7 @@ LLStatView::~LLStatView() | |||
67 | } | 67 | } |
68 | } | 68 | } |
69 | 69 | ||
70 | LLStatBar *LLStatView::addStat(const LLString& name, LLStat *statp) | 70 | LLStatBar *LLStatView::addStat(const std::string& name, LLStat *statp) |
71 | { | 71 | { |
72 | LLStatBar *stat_barp; | 72 | LLStatBar *stat_barp; |
73 | LLRect r; | 73 | LLRect r; |
@@ -92,7 +92,7 @@ LLStatBar *LLStatView::addStat(const LLString& name, LLStat *statp) | |||
92 | return stat_barp; | 92 | return stat_barp; |
93 | } | 93 | } |
94 | 94 | ||
95 | LLStatBar *LLStatView::getStatBar(const LLString& name) | 95 | LLStatBar *LLStatView::getStatBar(const std::string& name) |
96 | { | 96 | { |
97 | sb_vector_t::iterator iter; | 97 | sb_vector_t::iterator iter; |
98 | for(iter = mStatBars.begin(); iter != mStatBars.end(); ++iter) | 98 | for(iter = mStatBars.begin(); iter != mStatBars.end(); ++iter) |