diff options
author | Jacek Antonelli | 2009-11-19 04:19:06 -0600 |
---|---|---|
committer | Jacek Antonelli | 2009-11-19 04:19:06 -0600 |
commit | 1d443b7a94ed6f9ef1d408caef72fcbc0b1ee427 (patch) | |
tree | e09ccbc010e326a48fd91ba15b58afd7fb836b3f /linden/indra/newview/llstatview.h | |
parent | Fixed minor formatting issue in MANIFESTO.txt. (diff) | |
parent | Fixed CMake setting errors (diff) | |
download | meta-impy-1d443b7a94ed6f9ef1d408caef72fcbc0b1ee427.zip meta-impy-1d443b7a94ed6f9ef1d408caef72fcbc0b1ee427.tar.gz meta-impy-1d443b7a94ed6f9ef1d408caef72fcbc0b1ee427.tar.bz2 meta-impy-1d443b7a94ed6f9ef1d408caef72fcbc0b1ee427.tar.xz |
Merge remote branch 'mccabe/1.3.0-next' into next
Conflicts:
linden/indra/cmake/00-Common.cmake
linden/indra/newview/skins/default/xui/de/floater_about.xml
linden/indra/newview/skins/default/xui/fr/floater_about.xml
linden/indra/newview/skins/default/xui/ja/floater_about.xml
linden/indra/newview/skins/default/xui/ko/floater_about.xml
linden/indra/newview/skins/default/xui/zh/floater_about.xml
linden/install.xml
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llstatview.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/llstatview.h b/linden/indra/newview/llstatview.h index 8cfc3fb..2ea1eb2 100644 --- a/linden/indra/newview/llstatview.h +++ b/linden/indra/newview/llstatview.h | |||
@@ -17,7 +17,8 @@ | |||
17 | * There are special exceptions to the terms and conditions of the GPL as | 17 | * There are special exceptions to the terms and conditions of the GPL as |
18 | * it is applied to this Source Code. View the full text of the exception | 18 | * it is applied to this Source Code. View the full text of the exception |
19 | * in the file doc/FLOSS-exception.txt in this software distribution, or | 19 | * in the file doc/FLOSS-exception.txt in this software distribution, or |
20 | * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception | 20 | * online at |
21 | * http://secondlifegrid.net/programs/open_source/licensing/flossexception | ||
21 | * | 22 | * |
22 | * By copying, modifying or distributing this software, you acknowledge | 23 | * By copying, modifying or distributing this software, you acknowledge |
23 | * that you have read and understood your obligations described above, | 24 | * that you have read and understood your obligations described above, |
@@ -50,8 +51,10 @@ public: | |||
50 | 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. |
51 | */ | 52 | */ |
52 | 53 | ||
53 | LLStatBar *addStat(const std::string& name, LLStat *statp); | 54 | LLStatBar *addStat(const std::string& name, LLStat *statp, |
55 | const std::string& setting = std::string(), BOOL default_bar = FALSE, BOOL default_history = FALSE); | ||
54 | LLStatBar *getStatBar(const std::string& name); | 56 | LLStatBar *getStatBar(const std::string& name); |
57 | LLStatView *addStatView(const std::string& name, const std::string& label, const std::string& setting, const LLRect& rect); | ||
55 | 58 | ||
56 | protected: | 59 | protected: |
57 | typedef std::vector<LLStatBar *> sb_vector_t; | 60 | typedef std::vector<LLStatBar *> sb_vector_t; |
@@ -59,4 +62,4 @@ protected: | |||
59 | U32 mNumStatBars; | 62 | U32 mNumStatBars; |
60 | std::string mSetting; | 63 | std::string mSetting; |
61 | }; | 64 | }; |
62 | #endif // LL_STATVIEW_ | 65 | #endif // LL_STATVIEW_H |