summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-07-14 10:03:58 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2017-07-14 16:15:17 +0200
commit89f6c41abffd2885b7083ab0ef94da89c8b2c770 (patch)
treef3d7cfc215aa90297ec4cd7d32b7b17e77369436
parent5bccacf784dc26fb806d14a2acc2bec7e414c7bc (diff)
tdf#108824 Save "Mouse pointer visible" property
Change-Id: I6c5c9d885df7fa4032724861361957cb6981091c Reviewed-on: https://gerrit.libreoffice.org/39942 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index ba792d13f128..8b670eec9aa6 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;
}