diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-31 15:15:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-07-31 15:29:15 +0200 |
commit | ee30fdf6780d642e5f7e91385d9e7b5cca434888 (patch) | |
tree | 347d5f226733bd4baa5e9528f111538aa45bd1c9 /include/vcl | |
parent | 219534a029536861fce2413c34afedc98fde60e4 (diff) |
convert vcl/longcurr.hxx from XubString to OUString
Change-Id: I1803e4fdef67cd461c140578b46e0ef5632da3fb
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/longcurr.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/longcurr.hxx b/include/vcl/longcurr.hxx index f911ca8d8dfa..fd4c821cb6ef 100644 --- a/include/vcl/longcurr.hxx +++ b/include/vcl/longcurr.hxx @@ -33,7 +33,7 @@ class LocaleDataWrapper; class VCL_DLLPUBLIC LongCurrencyFormatter : public FormatterBase { private: - SAL_DLLPRIVATE friend bool ImplLongCurrencyReformat( const XubString&, BigInt, BigInt, sal_uInt16, const LocaleDataWrapper&, XubString&, LongCurrencyFormatter& ); + SAL_DLLPRIVATE friend bool ImplLongCurrencyReformat( const OUString&, BigInt, BigInt, sal_uInt16, const LocaleDataWrapper&, OUString&, LongCurrencyFormatter& ); SAL_DLLPRIVATE void ImpInit(); protected: @@ -42,7 +42,7 @@ protected: BigInt mnMin; BigInt mnMax; BigInt mnCorrectedValue; - OUString maCurrencySymbol; + OUString maCurrencySymbol; sal_uInt16 mnType; sal_uInt16 mnDecimalDigits; sal_Bool mbThousandSep; @@ -57,8 +57,8 @@ public: void SetUseThousandSep( sal_Bool b ); sal_Bool IsUseThousandSep() const { return mbThousandSep; } - void SetCurrencySymbol( const String& rStr ); - String GetCurrencySymbol() const; + void SetCurrencySymbol( const OUString& rStr ); + OUString GetCurrencySymbol() const; void SetMin( BigInt nNewMin ); BigInt GetMin() const { return mnMin; } |