summaryrefslogtreecommitdiffstats
path: root/oox
diff options
context:
space:
mode:
authorJustin Luth <justin.luth@collabora.com>2018-10-04 17:55:42 +0300
committerJustin Luth <justin_luth@sil.org>2018-10-04 21:29:23 +0200
commit2cae2ecfef47d8dd10647c10f9577392c1887d3a (patch)
treef4a8910c57707a6709107d8738d50455cc0ee90e /oox
parentsw: switch XAutoTextContainer to use user-dir files (diff)
downloadcore-2cae2ecfef47d8dd10647c10f9577392c1887d3a.tar.gz
core-2cae2ecfef47d8dd10647c10f9577392c1887d3a.zip
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.cxx2
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 )