[Libreoffice-commits] core.git: xmloff/source

Samuel Mehrbrodt Samuel.Mehrbrodt at cib.de
Fri Jul 14 08:49:32 UTC 2017


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

New commits:
commit efbf75b844f73d25414da3136aeeecafa40c47d1
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date:   Fri Jul 14 10:03:58 2017 +0200

    tdf#108824 Save "Mouse pointer visible" property
    
    Change-Id: I6c5c9d885df7fa4032724861361957cb6981091c
    Reviewed-on: https://gerrit.libreoffice.org/39939
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>

diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index 4397126201cb..44926530d47a 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_FALSE );
+            AddAttribute(XML_NAMESPACE_PRESENTATION, XML_MOUSE_VISIBLE, XML_TRUE );
             bHasAttr = true;
         }
 


More information about the Libreoffice-commits mailing list