diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-06 11:16:32 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-12 11:56:42 +0200 |
commit | 80ef151d967540dfcac54572e6eee643a71ff8c0 (patch) | |
tree | 8f8f88eff37f50e6f471bd851e95a2a3fc3c8155 /include/vcl/i18nhelp.hxx | |
parent | 624e0c4937c7bed307eddd53bf4a67ee346b742b (diff) |
convert vcl/i18nhelp.hxx from String to OUString
Change-Id: I804a5713a1d793e4828c78f777418c914a6feb71
Diffstat (limited to 'include/vcl/i18nhelp.hxx')
-rw-r--r-- | include/vcl/i18nhelp.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/i18nhelp.hxx b/include/vcl/i18nhelp.hxx index 8ece881a9b03..0ae55a77c514 100644 --- a/include/vcl/i18nhelp.hxx +++ b/include/vcl/i18nhelp.hxx @@ -73,11 +73,11 @@ public: sal_Int32 CompareString( const OUString& rStr1, const OUString& rStr2 ) const; sal_Bool MatchString( const OUString& rStr1, const OUString& rStr2 ) const; - sal_Bool MatchMnemonic( const String& rString, sal_Unicode cMnemonicChar ) const; + sal_Bool MatchMnemonic( const OUString& rString, sal_Unicode cMnemonicChar ) const; - String GetNum( long nNumber, sal_uInt16 nDecimals, sal_Bool bUseThousandSep = sal_True, sal_Bool bTrailingZeros = sal_True ) const; + OUString GetNum( long nNumber, sal_uInt16 nDecimals, sal_Bool bUseThousandSep = sal_True, sal_Bool bTrailingZeros = sal_True ) const; - static String filterFormattingChars( const String& ); + static OUString filterFormattingChars( const OUString& ); }; } // namespace vcl |