diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-15 14:10:56 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-04-15 14:53:28 +0200 |
commit | 127840be1180075b1b082bb0cf46a0eb3561c3e2 (patch) | |
tree | cf6ed4bc462c83e414fb37ab71ef8ad836f6a883 /vcl | |
parent | 48f03861115f14b01b70dd84839830785ef3dca0 (diff) |
AquaA11yTextAttributesWrapper: trigraphs confuse llvm-g++ 4.2.1
Change-Id: Ic45a2219c8352625f40619373f5828b981864fef
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/aqua/source/a11y/aqua11ytextattributeswrapper.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/aqua/source/a11y/aqua11ytextattributeswrapper.mm b/vcl/aqua/source/a11y/aqua11ytextattributeswrapper.mm index e3b62c72ec34..d35a53f5cbbf 100644 --- a/vcl/aqua/source/a11y/aqua11ytextattributeswrapper.mm +++ b/vcl/aqua/source/a11y/aqua11ytextattributeswrapper.mm @@ -64,7 +64,7 @@ using namespace ::rtl; +(int)convertItalicStyle:(PropertyValue)property { int italicStyle = 0; - sal_Int16 value = property.Value.get<::css_awt::FontSlant>(); + sal_Int16 value = property.Value.get< ::css_awt::FontSlant>(); if ( value == ::css_awt::FontSlant_ITALIC ) { italicStyle = NSItalicFontMask; } |