[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - writerfilter/source

Justin Luth (via logerrit) logerrit at kemper.freedesktop.org
Sat Jan 16 16:42:46 UTC 2021


 writerfilter/source/dmapper/DomainMapper_Impl.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 1b5ff41ae250ccd6b0e73b412ab7bd655f489d74
Author:     Justin Luth <justin_luth at sil.org>
AuthorDate: Sat Jan 16 12:12:04 2021 +0300
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Sat Jan 16 17:42:12 2021 +0100

    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 at sil.org>
    (cherry picked from commit b232b422a3cfe3b410bbc75e0fffdfc238fd10e7)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109398
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 7a248ca36aa2..d0d5a9fa5b0d 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -3387,6 +3387,8 @@ static OUString lcl_ExtractToken(OUString const& rCommand,
                     ++rIndex;
                     return "FORMULA";
                 }
+                else
+                    token.append('=');
             break;
             default:
                 token.append(currentChar);


More information about the Libreoffice-commits mailing list