diff options
author | Justin Luth <justin_luth@sil.org> | 2021-01-16 12:12:04 +0300 |
---|---|---|
committer | Justin Luth <justin_luth@sil.org> | 2021-01-16 12:32:22 +0100 |
commit | b232b422a3cfe3b410bbc75e0fffdfc238fd10e7 (patch) | |
tree | 2350481e4a2bf38b05cd12292ac8468062c0aeda /writerfilter/source/dmapper | |
parent | 5b4486a898968eb5019376ca6c4bd07a97ec537d (diff) |
tdf#116394 writerfilter: append '=' if not a formula marker
Oops - a silly mistake to throw away the character if
it didn't match a special purpose.
There is no point in adding a unit test for this.
Change-Id: I3b48af578ae96744405ec0919ff341d1c9b43f65
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109426
Tested-by: Jenkins
Reviewed-by: Justin Luth <justin_luth@sil.org>
Diffstat (limited to 'writerfilter/source/dmapper')
-rw-r--r-- | writerfilter/source/dmapper/DomainMapper_Impl.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx index f41f03a09a41..c0aff5d713a3 100644 --- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx +++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx @@ -3534,6 +3534,8 @@ static OUString lcl_ExtractToken(OUString const& rCommand, ++rIndex; return "FORMULA"; } + else + token.append('='); break; default: token.append(currentChar); |