diff options
author | Justin Luth <justin.luth@collabora.com> | 2018-10-04 17:55:42 +0300 |
---|---|---|
committer | Justin Luth <justin_luth@sil.org> | 2018-10-04 21:29:23 +0200 |
commit | 2cae2ecfef47d8dd10647c10f9577392c1887d3a (patch) | |
tree | f4a8910c57707a6709107d8738d50455cc0ee90e /oox | |
parent | 34dc3c02f6d529f5a6a3c7ae0c6d564dda23072d (diff) |
tdf#120301 oox: lclIsWhiteSpace should return true for a space
Change-Id: I72c79c1fed4d9a91bf02024eef23cd3b1a58632e
Reviewed-on: https://gerrit.libreoffice.org/61388
Tested-by: Jenkins
Reviewed-by: Justin Luth <justin_luth@sil.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/vml/vmlinputstream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/vml/vmlinputstream.cxx b/oox/source/vml/vmlinputstream.cxx index 0dcb588bf931..e33c66a87f21 100644 --- a/oox/source/vml/vmlinputstream.cxx +++ b/oox/source/vml/vmlinputstream.cxx @@ -43,7 +43,7 @@ inline const sal_Char* lclFindCharacter( const sal_Char* pcBeg, const sal_Char* inline bool lclIsWhiteSpace( sal_Char cChar ) { - return cChar < 32; + return cChar <= 32; } const sal_Char* lclFindWhiteSpace( const sal_Char* pcBeg, const sal_Char* pcEnd ) |