diff options
author | Noel Grandin <noel@peralex.com> | 2012-10-01 11:42:00 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-02 14:57:22 +0200 |
commit | aa720dcd3ab5ed87a58540e92f754d2426614978 (patch) | |
tree | e23e5f7c42449d4c8702a28f47d8651c1e051d36 /svl | |
parent | eef39fdc031ca83940d8cd48fb04a7e44355495a (diff) |
String->OUString in sComment field in svl::SvNumberFormat
Change-Id: I5a774563c791c7cd4170680a65711cc339f60c5b
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/zformat.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/inc/svl/zformat.hxx b/svl/inc/svl/zformat.hxx index f94e62d25dd7..0418fcad97b1 100644 --- a/svl/inc/svl/zformat.hxx +++ b/svl/inc/svl/zformat.hxx @@ -378,9 +378,9 @@ public: sal_Unicode cQuote = '"', sal_Unicode cEscIn = '\0', sal_Unicode cEscOut = '\\' ); - void SetComment( const String& rStr ) + void SetComment( const OUString& rStr ) { sComment = rStr; } - const String& GetComment() const { return sComment; } + const OUString& GetComment() const { return sComment; } /** Insert the number of blanks into the string that is needed to simulate the width of character c for underscore formats */ @@ -459,7 +459,7 @@ public: private: ImpSvNumFor NumFor[4]; // Array for the 4 subformats OUString sFormatstring; // The format code string - String sComment; // Comment, since number formatter version 6 + OUString sComment; // Comment, since number formatter version 6 double fLimit1; // Value for first condition double fLimit2; // Value for second condition ImpSvNumberformatScan& rScan; // Format code scanner |