Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libreoffice for openSUSE:Factory checked in at 2021-06-01 10:34:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libreoffice (Old) and /work/SRC/openSUSE:Factory/.libreoffice.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libreoffice" Tue Jun 1 10:34:00 2021 rev:228 rq:895619 version:7.1.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libreoffice/libreoffice.changes 2021-05-25 21:07:58.995068188 +0200 +++ /work/SRC/openSUSE:Factory/.libreoffice.new.1898/libreoffice.changes 2021-06-01 10:34:18.100490239 +0200 @@ -1,0 +2,6 @@ +Wed May 26 13:32:48 UTC 2021 - Andras Timar <[email protected]> + +- Fix bsc#1185505 - LO-L3: Text highlight "bleeds" when saving as PPTX + * bsc1185505.patch + +------------------------------------------------------------------- New: ---- bsc1185505.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libreoffice.spec ++++++ --- /var/tmp/diff_new_pack.NtPnsZ/_old 2021-06-01 10:34:22.392497546 +0200 +++ /var/tmp/diff_new_pack.NtPnsZ/_new 2021-06-01 10:34:22.396497553 +0200 @@ -105,6 +105,8 @@ Patch5: bsc1184961.patch # PATCH-FIX-OPENSUSE boo#1186110 fix GCC 11 error Patch6: gcc11-fix-error.patch +# bsc#1185505 - LO-L3: Text highlight "bleeds" when saving as PPTX +Patch7: bsc1185505.patch # Build with java 8 Patch101: 0001-Revert-java-9-changes.patch # try to save space by using hardlinks @@ -978,6 +980,7 @@ %patch4 -p1 %patch5 -p1 %patch6 -p1 +%patch7 -p1 %if 0%{?suse_version} < 1500 %patch101 -p1 %endif ++++++ bsc1185505.patch ++++++ >From 097fcc9721d24f6a634b98a0033dbdf9a5a21122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCl=C5=9Fah=20K=C3=B6se?= <[email protected]> Date: Wed, 19 May 2021 14:37:36 +0300 Subject: [PATCH] tdf#96061 Unset the highlight property MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When we have highlight property on specific part of the text the following texts were highligthing. To prevent this we unset the highlight property when we have not highlight property anymore. Change-Id: I802cde1c784afe47201a9ba4f41827dd0c705035 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115800 Tested-by: Jenkins Reviewed-by: G??l??ah K??se <[email protected]> Signed-off-by: Xisco Fauli <[email protected]> --- .../drawingml/textcharacterproperties.cxx | 2 + sd/qa/unit/data/pptx/tdf96061.pptx | Bin 0 -> 21022 bytes sd/qa/unit/export-tests-ooxml2.cxx | 35 ++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 sd/qa/unit/data/pptx/tdf96061.pptx diff --git a/oox/source/drawingml/textcharacterproperties.cxx b/oox/source/drawingml/textcharacterproperties.cxx index 20965e33abb1..4eb5acaffb56 100644 --- a/oox/source/drawingml/textcharacterproperties.cxx +++ b/oox/source/drawingml/textcharacterproperties.cxx @@ -177,6 +177,8 @@ void TextCharacterProperties::pushToPropMap( PropertyMap& rPropMap, const XmlFil if( maHighlightColor.isUsed() ) rPropMap.setProperty( PROP_CharBackColor, maHighlightColor.getColor( rFilter.getGraphicHelper() )); + else + rPropMap.setProperty( PROP_CharBackColor, sal_Int32(-1)); } static void pushToGrabBag( PropertySet& rPropSet, const std::vector<PropertyValue>& aVectorOfPropertyValues )
