aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llresmgr.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llui/llresmgr.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-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 'linden/indra/llui/llresmgr.h')
-rw-r--r--linden/indra/llui/llresmgr.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/llui/llresmgr.h b/linden/indra/llui/llresmgr.h
index f9ec115..d7bc86c 100644
--- a/linden/indra/llui/llresmgr.h
+++ b/linden/indra/llui/llresmgr.h
@@ -71,11 +71,11 @@ public:
71 char getMonetaryDecimalPoint() const; 71 char getMonetaryDecimalPoint() const;
72 char getMonetaryThousandsSeparator() const; 72 char getMonetaryThousandsSeparator() const;
73 std::string getMonetaryString( S32 input ) const; 73 std::string getMonetaryString( S32 input ) const;
74 void getIntegerString( LLString& output, S32 input ) const; 74 void getIntegerString( std::string& output, S32 input ) const;
75 75
76// const char* getRes( LLSTR_ID string_id ) const { return mStrings[ string_id ]; } 76// const char* getRes( LLSTR_ID string_id ) const { return mStrings[ string_id ]; }
77 const LLFontGL* getRes( LLFONT_ID font_id ) const { return mFonts[ font_id ]; } 77 const LLFontGL* getRes( LLFONT_ID font_id ) const { return mFonts[ font_id ]; }
78 const LLFontGL* getRes( LLString font_id ) const; 78 const LLFontGL* getRes( std::string font_id ) const;
79 79
80private: 80private:
81 LLLOCALE_ID mLocale; 81 LLLOCALE_ID mLocale;
@@ -92,14 +92,14 @@ private:
92class LLLocale 92class LLLocale
93{ 93{
94public: 94public:
95 LLLocale(const LLString& locale_string); 95 LLLocale(const std::string& locale_string);
96 virtual ~LLLocale(); 96 virtual ~LLLocale();
97 97
98 static const LLString USER_LOCALE; 98 static const std::string USER_LOCALE;
99 static const LLString SYSTEM_LOCALE; 99 static const std::string SYSTEM_LOCALE;
100 100
101private: 101private:
102 LLString mPrevLocaleString; 102 std::string mPrevLocaleString;
103}; 103};
104 104
105#endif // LL_RESMGR_ 105#endif // LL_RESMGR_