[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - xmloff/source

Samuel Mehrbrodt Samuel.Mehrbrodt at cib.de
Thu Jul 20 20:04:14 UTC 2017


 xmloff/source/draw/sdxmlexp.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a1afdfa15ec0410a735fd7e969219bd6cc1f33dd
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date:   Tue Jul 18 17:48:38 2017 +0200

    Revert "tdf#108824 Save "Mouse pointer visible" property"
    
    See tdf#108824 comment 4 for reasoning.
    
    This reverts commit 89f6c41abffd2885b7083ab0ef94da89c8b2c770.
    
    Change-Id: I3e9fcdd2c9cf6c3b0a0454a2a85799e4274e0bdd
    Reviewed-on: https://gerrit.libreoffice.org/40145
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index 8b670eec9aa6..ba792d13f128 100644
--- a/xmloff/source/draw/sdxmlexp.cxx
+++ b/xmloff/source/draw/sdxmlexp.cxx
@@ -1986,9 +1986,9 @@ void SdXMLExport::exportPresentationSettings()
         }
 
         xPresProps->getPropertyValue("IsMouseVisible") >>= bTemp;
-        if( bTemp )
+        if( !bTemp )
         {
-            AddAttribute(XML_NAMESPACE_PRESENTATION, XML_MOUSE_VISIBLE, XML_TRUE );
+            AddAttribute(XML_NAMESPACE_PRESENTATION, XML_MOUSE_VISIBLE, XML_FALSE );
             bHasAttr = true;
         }
 


More information about the Libreoffice-commits mailing list