summaryrefslogtreecommitdiff
path: root/oox/source/helper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:18:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:25:45 +0200
commit398027e8b218d88837c169baca3a9213237cbc0d (patch)
treef3c8a0fce1ef53a98dcddcb31642eee52435978c /oox/source/helper
parent14fc21bd303f8d1e45cc528394efccfcd6093ef3 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I379e89e1e6b9fd8668ba7ac59af33f63487a4f66
Diffstat (limited to 'oox/source/helper')
-rw-r--r--oox/source/helper/textinputstream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/helper/textinputstream.cxx b/oox/source/helper/textinputstream.cxx
index 0e363b16baa2..9aa5449ee4ae 100644
--- a/oox/source/helper/textinputstream.cxx
+++ b/oox/source/helper/textinputstream.cxx
@@ -161,7 +161,7 @@ OUString TextInputStream::readToChar( sal_Unicode cChar, bool bIncludeChar )
character in this call, it will be returned in the next call of one
of the own member functions. The function createFinalString() adds
a character that has been buffered in the previous call. */
- OUString aString = createFinalString( mxTextStrm->readString( aDelimiters, sal_False ) );
+ OUString aString = createFinalString( mxTextStrm->readString( aDelimiters, false ) );
// remove last character from string and remember it for next call
if( !bIncludeChar && !aString.isEmpty() && (aString[ aString.getLength() - 1 ] == cChar) )
{