diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-25 17:43:19 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-06 10:59:41 +0200 |
commit | ec5bf66d366cd42774a87465e1187271f48a4ab1 (patch) | |
tree | 753abf1bed73e17c23e3ff0bbfbca7ea27f3b31f /xmloff/source/style/styleexp.cxx | |
parent | dc28e90d200a839d4017d548217ee5ce8a23f848 (diff) |
fdo#84938: convert XML_EXPORT_FLAG_ to 'enum class'
Change-Id: I43d778e0eee19a56ea37898ec1c4309d3407775e
Diffstat (limited to 'xmloff/source/style/styleexp.cxx')
-rw-r--r-- | xmloff/source/style/styleexp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/styleexp.cxx b/xmloff/source/style/styleexp.cxx index bba026359e13..6396e1644d9c 100644 --- a/xmloff/source/style/styleexp.cxx +++ b/xmloff/source/style/styleexp.cxx @@ -321,7 +321,7 @@ bool XMLStyleExport::exportStyle( ::std::vector< XMLPropertyState > xPropStates = rPropMapper->Filter( xPropSet, true ); rPropMapper->exportXML( GetExport(), xPropStates, - XML_EXPORT_FLAG_IGN_WS ); + SvXmlExportFlags::IGN_WS ); rPropMapper->SetStyleName( OUString() ); @@ -358,7 +358,7 @@ bool XMLStyleExport::exportDefaultStyle( ::std::vector< XMLPropertyState > xPropStates = rPropMapper->FilterDefaults( xPropSet ); rPropMapper->exportXML( GetExport(), xPropStates, - XML_EXPORT_FLAG_IGN_WS ); + SvXmlExportFlags::IGN_WS ); } return true; } |