diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-11 20:22:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-11 20:22:47 +0100 |
commit | e7a958441a19a4e14bf12aac09fa566de0f263ee (patch) | |
tree | 175ab24b753681fd8ab16ee7156b4e47fd82d7ae | |
parent | d08a76cf72e1d1db9add8b01f4e93c4b4ba4dd15 (diff) |
single delimator of \xFF not four of '\0', 'x', 'F', 'F'
d08a76cf72e1d1db9add8b01f4e93c4b4ba4dd15 revealed that "\0xFF" was
always inserted as a delimator but presumably the intent was a single
delimator of "\xFF" and not four delimators of '\0', 'x', 'F', 'F'
Change-Id: I6b34c1bcd90086fd5d6fe7043fa98ef89bcb8553
-rw-r--r-- | editeng/source/editeng/impedit2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/impedit2.cxx b/editeng/source/editeng/impedit2.cxx index 1503a7b869dc..a421372b6813 100644 --- a/editeng/source/editeng/impedit2.cxx +++ b/editeng/source/editeng/impedit2.cxx @@ -83,7 +83,7 @@ ImpEditEngine::ImpEditEngine( EditEngine* pEE, SfxItemPool* pItemPool ) : aMinAutoPaperSize( 0x0, 0x0 ), aMaxAutoPaperSize( 0x7FFFFFFF, 0x7FFFFFFF ), aEditDoc( pItemPool ), - aWordDelimiters(" .,;:-'`'?!_=\"{}()[]\0xFF"), + aWordDelimiters(" .,;:-'`'?!_=\"{}()[]\xFF"), bKernAsianPunctuation(false), bAddExtLeading(false), bIsFormatting(false), |