summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-07-14 10:03:58 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-07-14 10:48:56 +0200
commitefbf75b844f73d25414da3136aeeecafa40c47d1 (patch)
treeb74235dcb7485d912cd678485a9d772015c4111a /xmloff
parent6af025501db1f25397bdbf1fdd6b71da4debcac4 (diff)
tdf#108824 Save "Mouse pointer visible" property
Change-Id: I6c5c9d885df7fa4032724861361957cb6981091c Reviewed-on: https://gerrit.libreoffice.org/39939 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'xmloff')
-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 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;
}