diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-03 10:55:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-03 11:05:13 +0000 |
commit | 0fe6f1a196b70f0ba4c948389b2ef9b1e77187b8 (patch) | |
tree | a35bd01d1c9a015cbcca380bc5cb177abc83e3fe /vcl/osx/a11ytextattributeswrapper.mm | |
parent | d68927c7fd4346311dce58e6059186633996d68b (diff) |
use actual UNO enums in vcl..xmlsecurity
Change-Id: Id862544f27ebcbe8363f93dc83192d0f0cddb5cc
Reviewed-on: https://gerrit.libreoffice.org/36041
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/osx/a11ytextattributeswrapper.mm')
-rw-r--r-- | vcl/osx/a11ytextattributeswrapper.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/a11ytextattributeswrapper.mm b/vcl/osx/a11ytextattributeswrapper.mm index 090f429df30f..4a7de4824b17 100644 --- a/vcl/osx/a11ytextattributeswrapper.mm +++ b/vcl/osx/a11ytextattributeswrapper.mm @@ -141,7 +141,7 @@ using namespace ::com::sun::star::uno; +(int)convertItalicStyle:(PropertyValue)property { int italicStyle = NSUnitalicFontMask; - sal_Int16 value = property.Value.get< ::css_awt::FontSlant>(); + ::css_awt::FontSlant value = property.Value.get< ::css_awt::FontSlant>(); if ( value == ::css_awt::FontSlant_ITALIC ) { italicStyle = NSItalicFontMask; } @@ -279,7 +279,7 @@ SAL_WNODEPRECATED_DECLARATIONS_PUSH // 'NSJustifiedTextAlignment' is deprecated: first deprecated in macOS 10.12 // 'NSLeftTextAlignment' is deprecated: first deprecated in macOS 10.12 // 'NSRightTextAlignment' is deprecated: first deprecated in macOS 10.12 - switch(alignment) { + switch((css::style::ParagraphAdjust)alignment) { case css::style::ParagraphAdjust_RIGHT : textAlignment = [NSNumber numberWithInteger:NSRightTextAlignment] ; break; case css::style::ParagraphAdjust_CENTER: textAlignment = [NSNumber numberWithInteger:NSCenterTextAlignment] ; break; case css::style::ParagraphAdjust_BLOCK : textAlignment = [NSNumber numberWithInteger:NSJustifiedTextAlignment]; break; |