diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-18 11:22:11 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-18 11:27:35 +0900 |
commit | 3c517e8a6c7be101b35bcad3885439434574dabc (patch) | |
tree | 081c0f9a7c61afa1b9ba58e73165d6e5d7599725 /include/vcl | |
parent | a48f46cf8dfaaaa67011fab91582187dbd03de59 (diff) |
sal_Bool to bool
Change-Id: Id1c64ab4be262713204cfeeb6333ec7d33fffcfb
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/strhelper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/strhelper.hxx b/include/vcl/strhelper.hxx index 0d0949a3515f..155e0d46d40b 100644 --- a/include/vcl/strhelper.hxx +++ b/include/vcl/strhelper.hxx @@ -37,8 +37,8 @@ namespace psp VCL_DLLPUBLIC int GetCommandLineTokenCount(const OUString&); // returns number of tokens (zero if empty or whitespace only) - VCL_DLLPUBLIC String WhitespaceToSpace( const String&, sal_Bool bProtect = sal_True ); - VCL_DLLPUBLIC OString WhitespaceToSpace(const OString&, sal_Bool bProtect = sal_True); + VCL_DLLPUBLIC String WhitespaceToSpace( const String&, bool bProtect = true ); + VCL_DLLPUBLIC OString WhitespaceToSpace(const OString&, bool bProtect = true); // returns a string with multiple adjacent occurrences of whitespace // converted to a single space. if bProtect is sal_True (nonzero), then // doublequote, singlequote and singleleftquote protect their respective |