summaryrefslogtreecommitdiff
path: root/vcl/aqua
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-15 14:10:56 +0200
committerMichael Stahl <mstahl@redhat.com>2013-04-15 14:53:28 +0200
commit127840be1180075b1b082bb0cf46a0eb3561c3e2 (patch)
treecf6ed4bc462c83e414fb37ab71ef8ad836f6a883 /vcl/aqua
parent48f03861115f14b01b70dd84839830785ef3dca0 (diff)
AquaA11yTextAttributesWrapper: trigraphs confuse llvm-g++ 4.2.1
Change-Id: Ic45a2219c8352625f40619373f5828b981864fef
Diffstat (limited to 'vcl/aqua')
-rw-r--r--vcl/aqua/source/a11y/aqua11ytextattributeswrapper.mm2
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;
}