summaryrefslogtreecommitdiff
path: root/vcl/osx
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:26:56 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-22 01:55:18 +0100
commit58d98a08aee7bf027c109eeb94183d24351827fa (patch)
tree4cdfd20f56d097e77f79286dfcc379eca25aa12a /vcl/osx
parenta65141b2b46ad8150bafca4629b0ef924978a201 (diff)
tdf#123936 Formatting files in module vcl with clang-format
Change-Id: Ia162ad5b7499c0ddfdbfca59ae76b81335ce2d45 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105728 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Jenkins
Diffstat (limited to 'vcl/osx')
-rw-r--r--vcl/osx/DragActionConversion.cxx40
-rw-r--r--vcl/osx/PictToBmpFlt.hxx9
-rw-r--r--vcl/osx/a11yactionwrapper.h4
-rw-r--r--vcl/osx/a11ycomponentwrapper.h12
-rw-r--r--vcl/osx/a11yfocuslistener.hxx11
-rw-r--r--vcl/osx/a11yselectionwrapper.h8
-rw-r--r--vcl/osx/a11ytablewrapper.h8
-rw-r--r--vcl/osx/a11ytextwrapper.h50
-rw-r--r--vcl/osx/a11yutil.h7
-rw-r--r--vcl/osx/a11yvaluewrapper.h12
-rw-r--r--vcl/osx/a11ywrapperbutton.h6
-rw-r--r--vcl/osx/a11ywrappercheckbox.h6
-rw-r--r--vcl/osx/a11ywrappercombobox.h21
-rw-r--r--vcl/osx/a11ywrappergroup.h4
-rw-r--r--vcl/osx/a11ywrapperlist.h2
-rw-r--r--vcl/osx/a11ywrapperradiobutton.h6
-rw-r--r--vcl/osx/a11ywrapperradiogroup.h2
-rw-r--r--vcl/osx/a11ywrapperrow.h4
-rw-r--r--vcl/osx/a11ywrapperscrollarea.h6
-rw-r--r--vcl/osx/a11ywrapperscrollbar.h2
-rw-r--r--vcl/osx/a11ywrappersplitter.h2
-rw-r--r--vcl/osx/a11ywrapperstatictext.h4
-rw-r--r--vcl/osx/a11ywrappertabgroup.h2
-rw-r--r--vcl/osx/a11ywrappertextarea.h2
-rw-r--r--vcl/osx/a11ywrappertoolbar.h2
25 files changed, 117 insertions, 115 deletions
diff --git a/vcl/osx/DragActionConversion.cxx b/vcl/osx/DragActionConversion.cxx
index 3af6cd010a3f..d44c3384a6fc 100644
--- a/vcl/osx/DragActionConversion.cxx
+++ b/vcl/osx/DragActionConversion.cxx
@@ -28,24 +28,24 @@ using namespace com::sun::star::datatransfer::dnd;
*/
unsigned int OfficeToSystemDragActions(sal_Int8 dragActions)
{
- unsigned int actions = NSDragOperationNone;
+ unsigned int actions = NSDragOperationNone;
- if (dragActions & DNDConstants::ACTION_COPY)
+ if (dragActions & DNDConstants::ACTION_COPY)
{
- actions |= NSDragOperationCopy;
+ actions |= NSDragOperationCopy;
}
- if (dragActions & DNDConstants::ACTION_MOVE)
+ if (dragActions & DNDConstants::ACTION_MOVE)
{
- actions |= NSDragOperationMove;
+ actions |= NSDragOperationMove;
}
- if (dragActions & DNDConstants::ACTION_LINK)
+ if (dragActions & DNDConstants::ACTION_LINK)
{
- actions |= NSDragOperationLink;
+ actions |= NSDragOperationLink;
}
- return actions;
+ return actions;
}
/* Convert system conform drag actions into office conform
@@ -54,31 +54,31 @@ unsigned int OfficeToSystemDragActions(sal_Int8 dragActions)
*/
sal_Int8 SystemToOfficeDragActions(unsigned int dragActions)
{
- sal_Int8 actions = DNDConstants::ACTION_NONE;
+ sal_Int8 actions = DNDConstants::ACTION_NONE;
- if (dragActions & NSDragOperationCopy)
+ if (dragActions & NSDragOperationCopy)
{
- actions |= DNDConstants::ACTION_COPY;
+ actions |= DNDConstants::ACTION_COPY;
}
- if (dragActions & NSDragOperationMove)
+ if (dragActions & NSDragOperationMove)
{
- actions |= DNDConstants::ACTION_MOVE;
+ actions |= DNDConstants::ACTION_MOVE;
}
- if (dragActions & NSDragOperationLink)
+ if (dragActions & NSDragOperationLink)
{
- actions |= DNDConstants::ACTION_LINK;
+ actions |= DNDConstants::ACTION_LINK;
}
- // We map NSDragOperationGeneric to ACTION_DEFAULT to
- // signal that we have to decide for a drag action
- if (dragActions & NSDragOperationGeneric)
+ // We map NSDragOperationGeneric to ACTION_DEFAULT to
+ // signal that we have to decide for a drag action
+ if (dragActions & NSDragOperationGeneric)
{
- actions |= DNDConstants::ACTION_DEFAULT;
+ actions |= DNDConstants::ACTION_DEFAULT;
}
- return actions;
+ return actions;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/osx/PictToBmpFlt.hxx b/vcl/osx/PictToBmpFlt.hxx
index 027bd178bc3a..e0e111818d99 100644
--- a/vcl/osx/PictToBmpFlt.hxx
+++ b/vcl/osx/PictToBmpFlt.hxx
@@ -26,12 +26,11 @@
#include <Cocoa/Cocoa.h>
#include <postmac.h>
-bool ImageToPNG( css::uno::Sequence<sal_Int8> const & rImgData,
- css::uno::Sequence<sal_Int8>& rPngData);
+bool ImageToPNG(css::uno::Sequence<sal_Int8> const& rImgData,
+ css::uno::Sequence<sal_Int8>& rPngData);
-bool PNGToImage( css::uno::Sequence<sal_Int8> const & rPngData,
- css::uno::Sequence<sal_Int8>& rImgData,
- NSBitmapImageFileType eOutFormat);
+bool PNGToImage(css::uno::Sequence<sal_Int8> const& rPngData,
+ css::uno::Sequence<sal_Int8>& rImgData, NSBitmapImageFileType eOutFormat);
#endif // INCLUDED_VCL_OSX_PICTTOBMPFLT_HXX
diff --git a/vcl/osx/a11yactionwrapper.h b/vcl/osx/a11yactionwrapper.h
index 20b2bad1b4af..51da8a2caf38 100644
--- a/vcl/osx/a11yactionwrapper.h
+++ b/vcl/osx/a11yactionwrapper.h
@@ -26,8 +26,8 @@
@interface AquaA11yActionWrapper : NSObject
{
}
-+(NSArray *)actionNamesForElement:(AquaA11yWrapper *)wrapper;
-+(void)doAction:(NSString *)action ofElement:(AquaA11yWrapper *)wrapper;
++ (NSArray*)actionNamesForElement:(AquaA11yWrapper*)wrapper;
++ (void)doAction:(NSString*)action ofElement:(AquaA11yWrapper*)wrapper;
@end
#endif // INCLUDED_VCL_OSX_A11YACTIONWRAPPER_H
diff --git a/vcl/osx/a11ycomponentwrapper.h b/vcl/osx/a11ycomponentwrapper.h
index 92c6b1b493fd..3d8b16929279 100644
--- a/vcl/osx/a11ycomponentwrapper.h
+++ b/vcl/osx/a11ycomponentwrapper.h
@@ -26,12 +26,12 @@
@interface AquaA11yComponentWrapper : NSObject
{
}
-+(id)sizeAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)positionAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)descriptionAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(void)addAttributeNamesTo:(NSMutableArray *)attributeNames;
-+(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper;
-+(void)setFocusedAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
++ (id)sizeAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)positionAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)descriptionAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (void)addAttributeNamesTo:(NSMutableArray*)attributeNames;
++ (BOOL)isAttributeSettable:(NSString*)attribute forElement:(AquaA11yWrapper*)wrapper;
++ (void)setFocusedAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
@end
#endif // INCLUDED_VCL_OSX_A11YCOMPONENTWRAPPER_H
diff --git a/vcl/osx/a11yfocuslistener.hxx b/vcl/osx/a11yfocuslistener.hxx
index 44a25cce0b8f..fdd28ac230c2 100644
--- a/vcl/osx/a11yfocuslistener.hxx
+++ b/vcl/osx/a11yfocuslistener.hxx
@@ -27,18 +27,19 @@ class AquaA11yFocusListener : public KeyboardFocusListener
{
id m_focusedObject;
- static rtl::Reference< AquaA11yFocusListener > theListener;
+ static rtl::Reference<AquaA11yFocusListener> theListener;
AquaA11yFocusListener();
- virtual ~AquaA11yFocusListener() override {};
-public:
+ virtual ~AquaA11yFocusListener() override{};
- static rtl::Reference< AquaA11yFocusListener > const & get();
+public:
+ static rtl::Reference<AquaA11yFocusListener> const& get();
id getFocusedUIElement();
// KeyboardFocusListener
- virtual void focusedObjectChanged(const css::uno::Reference< css::accessibility::XAccessible >& xAccessible) override;
+ virtual void focusedObjectChanged(
+ const css::uno::Reference<css::accessibility::XAccessible>& xAccessible) override;
};
#endif // INCLUDED_VCL_OSX_A11YFOCUSLISTENER_HXX
diff --git a/vcl/osx/a11yselectionwrapper.h b/vcl/osx/a11yselectionwrapper.h
index 923737b652c7..880281a114ed 100644
--- a/vcl/osx/a11yselectionwrapper.h
+++ b/vcl/osx/a11yselectionwrapper.h
@@ -26,10 +26,10 @@
@interface AquaA11ySelectionWrapper : NSObject
{
}
-+(id)selectedChildrenAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(void)addAttributeNamesTo:(NSMutableArray *)attributeNames;
-+(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper;
-+(void)setSelectedChildrenAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
++ (id)selectedChildrenAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (void)addAttributeNamesTo:(NSMutableArray*)attributeNames;
++ (BOOL)isAttributeSettable:(NSString*)attribute forElement:(AquaA11yWrapper*)wrapper;
++ (void)setSelectedChildrenAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
@end
#endif // INCLUDED_VCL_OSX_A11YSELECTIONWRAPPER_H
diff --git a/vcl/osx/a11ytablewrapper.h b/vcl/osx/a11ytablewrapper.h
index 450a829c12f3..ae2c454a81f0 100644
--- a/vcl/osx/a11ytablewrapper.h
+++ b/vcl/osx/a11ytablewrapper.h
@@ -27,11 +27,11 @@
@interface AquaA11yTableWrapper : AquaA11yWrapper
{
}
-+(id)childrenAttributeForElement:(AquaA11yTableWrapper *)wrapper;
-+(void)addAttributeNamesTo: (NSMutableArray *)attributeNames object: (AquaA11yWrapper*)pObject;
++ (id)childrenAttributeForElement:(AquaA11yTableWrapper*)wrapper;
++ (void)addAttributeNamesTo:(NSMutableArray*)attributeNames object:(AquaA11yWrapper*)pObject;
--(id)rowsAttribute;
--(id)columnsAttribute;
+- (id)rowsAttribute;
+- (id)columnsAttribute;
@end
#endif // INCLUDED_VCL_OSX_A11YTABLEWRAPPER_H
diff --git a/vcl/osx/a11ytextwrapper.h b/vcl/osx/a11ytextwrapper.h
index 5d2154ff6298..356f664fbfa8 100644
--- a/vcl/osx/a11ytextwrapper.h
+++ b/vcl/osx/a11ytextwrapper.h
@@ -26,31 +26,31 @@
@interface AquaA11yTextWrapper : NSObject
{
}
-+(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)numberOfCharactersAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)selectedTextAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)selectedTextRangeAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)visibleCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)sharedTextUIElementsAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)sharedCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)stringForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
-+(id)attributedStringForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
-+(id)rangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
-+(id)rangeForPositionAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)point;
-+(id)boundsForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
-+(id)styleRangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
-+(id)rTFForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range;
-+(id)lineForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
-+(id)rangeForLineAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)line;
-+(void)addAttributeNamesTo:(NSMutableArray *)attributeNames;
-+(void)addParameterizedAttributeNamesTo:(NSMutableArray *)attributeNames;
-+(NSArray *)specialAttributeNames;
-+(NSArray *)specialParameterizedAttributeNames;
-+(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper;
-+(void)setVisibleCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
-+(void)setSelectedTextRangeAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
-+(void)setSelectedTextAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
-+(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
++ (id)valueAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)numberOfCharactersAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)selectedTextAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)selectedTextRangeAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)visibleCharacterRangeAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)sharedTextUIElementsAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)sharedCharacterRangeAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)stringForRangeAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)range;
++ (id)attributedStringForRangeAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)range;
++ (id)rangeForIndexAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)index;
++ (id)rangeForPositionAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)point;
++ (id)boundsForRangeAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)range;
++ (id)styleRangeForIndexAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)index;
++ (id)rTFForRangeAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)range;
++ (id)lineForIndexAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)index;
++ (id)rangeForLineAttributeForElement:(AquaA11yWrapper*)wrapper forParameter:(id)line;
++ (void)addAttributeNamesTo:(NSMutableArray*)attributeNames;
++ (void)addParameterizedAttributeNamesTo:(NSMutableArray*)attributeNames;
++ (NSArray*)specialAttributeNames;
++ (NSArray*)specialParameterizedAttributeNames;
++ (BOOL)isAttributeSettable:(NSString*)attribute forElement:(AquaA11yWrapper*)wrapper;
++ (void)setVisibleCharacterRangeAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
++ (void)setSelectedTextRangeAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
++ (void)setSelectedTextAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
++ (void)setValueAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
@end
#endif // INCLUDED_VCL_OSX_A11YTEXTWRAPPER_H
diff --git a/vcl/osx/a11yutil.h b/vcl/osx/a11yutil.h
index 56778e76dd80..7edf60b292a5 100644
--- a/vcl/osx/a11yutil.h
+++ b/vcl/osx/a11yutil.h
@@ -22,10 +22,11 @@
#include <com/sun/star/awt/Point.hpp>
-@interface AquaA11yUtil : NSObject {
+@interface AquaA11yUtil : NSObject
+{
}
-+(NSValue *)vclPointToNSPoint:(css::awt::Point)vclPoint;
-+(css::awt::Point)nsPointToVclPoint:(NSValue *)nsPoint;
++ (NSValue*)vclPointToNSPoint:(css::awt::Point)vclPoint;
++ (css::awt::Point)nsPointToVclPoint:(NSValue*)nsPoint;
@end
#endif // INCLUDED_VCL_OSX_A11YUTIL_H
diff --git a/vcl/osx/a11yvaluewrapper.h b/vcl/osx/a11yvaluewrapper.h
index b4db1de964ab..686006b94800 100644
--- a/vcl/osx/a11yvaluewrapper.h
+++ b/vcl/osx/a11yvaluewrapper.h
@@ -27,12 +27,12 @@
@interface AquaA11yValueWrapper : NSObject
{
}
-+(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)minValueAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(id)maxValueAttributeForElement:(AquaA11yWrapper *)wrapper;
-+(void)addAttributeNamesTo:(NSMutableArray *)attributeNames;
-+(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper;
-+(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value;
++ (id)valueAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)minValueAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (id)maxValueAttributeForElement:(AquaA11yWrapper*)wrapper;
++ (void)addAttributeNamesTo:(NSMutableArray*)attributeNames;
++ (BOOL)isAttributeSettable:(NSString*)attribute forElement:(AquaA11yWrapper*)wrapper;
++ (void)setValueAttributeForElement:(AquaA11yWrapper*)wrapper to:(id)value;
@end
#endif // INCLUDED_VCL_OSX_A11YVALUEWRAPPER_H
diff --git a/vcl/osx/a11ywrapperbutton.h b/vcl/osx/a11ywrapperbutton.h
index 23103cd92b98..7105d160bf6c 100644
--- a/vcl/osx/a11ywrapperbutton.h
+++ b/vcl/osx/a11ywrapperbutton.h
@@ -25,9 +25,9 @@
@interface AquaA11yWrapperButton : AquaA11yWrapper
{
}
--(id)valueAttribute;
--(id)descriptionAttribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)valueAttribute;
+- (id)descriptionAttribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERBUTTON_H
diff --git a/vcl/osx/a11ywrappercheckbox.h b/vcl/osx/a11ywrappercheckbox.h
index 6f20a888b271..80c37b1dcaad 100644
--- a/vcl/osx/a11ywrappercheckbox.h
+++ b/vcl/osx/a11ywrappercheckbox.h
@@ -25,9 +25,9 @@
@interface AquaA11yWrapperCheckBox : AquaA11yWrapper
{
}
--(id)valueAttribute;
--(BOOL)accessibilityIsAttributeSettable:(NSString *)attribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)valueAttribute;
+- (BOOL)accessibilityIsAttributeSettable:(NSString*)attribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERCHECKBOX_H
diff --git a/vcl/osx/a11ywrappercombobox.h b/vcl/osx/a11ywrappercombobox.h
index 7995f06b69fd..1df25fbbe184 100644
--- a/vcl/osx/a11ywrappercombobox.h
+++ b/vcl/osx/a11ywrappercombobox.h
@@ -25,18 +25,19 @@
@interface AquaA11yWrapperComboBox : AquaA11yWrapper
{
- AquaA11yWrapper * textArea;
+ AquaA11yWrapper* textArea;
}
--(id)initWithAccessibleContext: (css::uno::Reference < css::accessibility::XAccessibleContext >) anAccessibleContext;
--(id)valueAttribute;
--(id)numberOfCharactersAttribute;
--(id)selectedTextAttribute;
--(id)selectedTextRangeAttribute;
--(id)visibleCharacterRangeAttribute;
+- (id)initWithAccessibleContext:
+ (css::uno::Reference<css::accessibility::XAccessibleContext>)anAccessibleContext;
+- (id)valueAttribute;
+- (id)numberOfCharactersAttribute;
+- (id)selectedTextAttribute;
+- (id)selectedTextRangeAttribute;
+- (id)visibleCharacterRangeAttribute;
// Accessibility Protocol
--(BOOL)accessibilityIsAttributeSettable:(NSString *)attribute;
--(void)accessibilitySetValue:(id)value forAttribute:(NSString *)attribute;
--(NSArray *)accessibilityAttributeNames;
+- (BOOL)accessibilityIsAttributeSettable:(NSString*)attribute;
+- (void)accessibilitySetValue:(id)value forAttribute:(NSString*)attribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERCOMBOBOX_H
diff --git a/vcl/osx/a11ywrappergroup.h b/vcl/osx/a11ywrappergroup.h
index 5309c155b1c4..ece809a84d57 100644
--- a/vcl/osx/a11ywrappergroup.h
+++ b/vcl/osx/a11ywrappergroup.h
@@ -25,8 +25,8 @@
@interface AquaA11yWrapperGroup : AquaA11yWrapper
{
}
--(id)titleUIElementAttribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)titleUIElementAttribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERGROUP_H
diff --git a/vcl/osx/a11ywrapperlist.h b/vcl/osx/a11ywrapperlist.h
index 8864555f283e..d13101c584aa 100644
--- a/vcl/osx/a11ywrapperlist.h
+++ b/vcl/osx/a11ywrapperlist.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperList : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERLIST_H
diff --git a/vcl/osx/a11ywrapperradiobutton.h b/vcl/osx/a11ywrapperradiobutton.h
index ec8999f36035..11f94b033cc9 100644
--- a/vcl/osx/a11ywrapperradiobutton.h
+++ b/vcl/osx/a11ywrapperradiobutton.h
@@ -25,9 +25,9 @@
@interface AquaA11yWrapperRadioButton : AquaA11yWrapper
{
}
--(id)valueAttribute;
--(BOOL)accessibilityIsAttributeSettable:(NSString *)attribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)valueAttribute;
+- (BOOL)accessibilityIsAttributeSettable:(NSString*)attribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERRADIOBUTTON_H
diff --git a/vcl/osx/a11ywrapperradiogroup.h b/vcl/osx/a11ywrapperradiogroup.h
index 98e5a5cf5789..6c576c866513 100644
--- a/vcl/osx/a11ywrapperradiogroup.h
+++ b/vcl/osx/a11ywrapperradiogroup.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperRadioGroup : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERRADIOGROUP_H
diff --git a/vcl/osx/a11ywrapperrow.h b/vcl/osx/a11ywrapperrow.h
index 00e32f4dfdb4..ebf6ae0bb5fa 100644
--- a/vcl/osx/a11ywrapperrow.h
+++ b/vcl/osx/a11ywrapperrow.h
@@ -25,8 +25,8 @@
@interface AquaA11yWrapperRow : AquaA11yWrapper
{
}
--(id)disclosingAttribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)disclosingAttribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERROW_H
diff --git a/vcl/osx/a11ywrapperscrollarea.h b/vcl/osx/a11ywrapperscrollarea.h
index c1556f9a9c19..3eaf1dc42ad1 100644
--- a/vcl/osx/a11ywrapperscrollarea.h
+++ b/vcl/osx/a11ywrapperscrollarea.h
@@ -25,9 +25,9 @@
@interface AquaA11yWrapperScrollArea : AquaA11yWrapper
{
}
--(id)verticalScrollBarAttribute;
--(id)horizontalScrollBarAttribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)verticalScrollBarAttribute;
+- (id)horizontalScrollBarAttribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERSCROLLAREA_H
diff --git a/vcl/osx/a11ywrapperscrollbar.h b/vcl/osx/a11ywrapperscrollbar.h
index 88beceb4f1cd..e05ab3cccaf4 100644
--- a/vcl/osx/a11ywrapperscrollbar.h
+++ b/vcl/osx/a11ywrapperscrollbar.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperScrollBar : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERSCROLLBAR_H
diff --git a/vcl/osx/a11ywrappersplitter.h b/vcl/osx/a11ywrappersplitter.h
index 22397e869488..60774c258622 100644
--- a/vcl/osx/a11ywrappersplitter.h
+++ b/vcl/osx/a11ywrappersplitter.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperSplitter : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERSPLITTER_H
diff --git a/vcl/osx/a11ywrapperstatictext.h b/vcl/osx/a11ywrapperstatictext.h
index c02a1f3b82a4..d3fcd3536d6c 100644
--- a/vcl/osx/a11ywrapperstatictext.h
+++ b/vcl/osx/a11ywrapperstatictext.h
@@ -25,8 +25,8 @@
@interface AquaA11yWrapperStaticText : AquaA11yWrapper
{
}
--(id)titleAttribute;
--(NSArray *)accessibilityAttributeNames;
+- (id)titleAttribute;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERSTATICTEXT_H
diff --git a/vcl/osx/a11ywrappertabgroup.h b/vcl/osx/a11ywrappertabgroup.h
index 38c12ed21afb..c38b1d34ac1c 100644
--- a/vcl/osx/a11ywrappertabgroup.h
+++ b/vcl/osx/a11ywrappertabgroup.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperTabGroup : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERTABGROUP_H
diff --git a/vcl/osx/a11ywrappertextarea.h b/vcl/osx/a11ywrappertextarea.h
index 325284973eac..f32862a769ce 100644
--- a/vcl/osx/a11ywrappertextarea.h
+++ b/vcl/osx/a11ywrappertextarea.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperTextArea : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERTEXTAREA_H
diff --git a/vcl/osx/a11ywrappertoolbar.h b/vcl/osx/a11ywrappertoolbar.h
index d8871a507879..2d61822900c5 100644
--- a/vcl/osx/a11ywrappertoolbar.h
+++ b/vcl/osx/a11ywrappertoolbar.h
@@ -25,7 +25,7 @@
@interface AquaA11yWrapperToolbar : AquaA11yWrapper
{
}
--(NSArray *)accessibilityAttributeNames;
+- (NSArray*)accessibilityAttributeNames;
@end
#endif // INCLUDED_VCL_OSX_A11YWRAPPERTOOLBAR_H