qt5base-lts/tests/auto/other/qaccessibilitymac
Tor Arne Vestbø 2f9effeb64 Fix OS X 10.11 (Xcode 7.1) build issues due to strongly typed enums
Apple changed some enums in the 10.11 SDK from being just:

  enum { ... }; typedef uint64_t Foo;

to:

  typedef CF_ENUM(uint64_t, Foo) { ... };

which in C++11 mode expands to:

  typedef enum Foo : uint64_t Foo; enum Foo : uint64_t { ... };

The use of strongly typed enums means we need to explicitly cast from
int in the places where we know what we are doing.

Change-Id: I7c8cfdbc0549471a3292de14d8b766fe17133e25
Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
2015-11-16 14:26:43 +00:00
..
qaccessibilitymac.pro Cocoa Accessibility: fix ignoring of objects 2013-06-07 14:54:39 +02:00
tst_qaccessibilitymac_helpers.h OS X Accessibility: Make checkboxes etc. checkable with VoiceOver 2015-03-25 09:48:43 +00:00
tst_qaccessibilitymac_helpers.mm Fix OS X 10.11 (Xcode 7.1) build issues due to strongly typed enums 2015-11-16 14:26:43 +00:00
tst_qaccessibilitymac.cpp OS X Accessibility: Make checkboxes etc. checkable with VoiceOver 2015-03-25 09:48:43 +00:00