diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-04 15:34:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-06 09:01:28 +0200 |
commit | 9b37c2176e4da7575398c15921e3466208f19847 (patch) | |
tree | fa2d103b3829c5a128a9058632c8c9224ca7abd7 /oox | |
parent | 78706545a6df37ccc57c21190f51e9081180ac70 (diff) |
convert SUBSFONT_ to scoped enum
Change-Id: Ic66191ac4cdfa753dc784e7bd1a6dd20f50def6b
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/drawingml.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index 484c90b51519..da55e0f9f0e3 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -1368,7 +1368,7 @@ void DrawingML::WriteRunProperties( Reference< XPropertySet > rRun, bool bIsFiel OUString usTypeface; mAny >>= usTypeface; - OUString aSubstName( GetSubsFontName( usTypeface, SUBSFONT_ONLYONE | SUBSFONT_MS ) ); + OUString aSubstName( GetSubsFontName( usTypeface, SubsFontFlags::ONLYONE | SubsFontFlags::MS ) ); mpFS->singleElementNS( XML_a, XML_latin, XML_typeface, USS(aSubstName.getLength() ? aSubstName : usTypeface), @@ -1384,7 +1384,7 @@ void DrawingML::WriteRunProperties( Reference< XPropertySet > rRun, bool bIsFiel OUString usTypeface; mAny >>= usTypeface; - OUString aSubstName( GetSubsFontName( usTypeface, SUBSFONT_ONLYONE | SUBSFONT_MS ) ); + OUString aSubstName( GetSubsFontName( usTypeface, SubsFontFlags::ONLYONE | SubsFontFlags::MS ) ); mpFS->singleElementNS( XML_a, bComplex ? XML_cs : XML_ea, XML_typeface, USS(aSubstName.getLength() ? aSubstName : usTypeface), |