qt5base-lts/tests/auto/other/macnativeevents
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
..
BLACKLIST Blacklist and skip various tests that are flakey 2015-06-14 10:50:45 +00:00
expectedeventlist.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
expectedeventlist.h Update copyright headers 2015-02-11 06:49:51 +00:00
macnativeevents.pro Tests: Use blacklist for failing tests in tst_macnativevents 2015-04-17 14:07:14 +00:00
nativeeventlist.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
nativeeventlist.h Update copyright headers 2015-02-11 06:49:51 +00:00
qnativeevents_mac.cpp Fix OS X 10.11 (Xcode 7.1) build issues due to strongly typed enums 2015-11-16 14:26:43 +00:00
qnativeevents.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
qnativeevents.h Update copyright headers 2015-02-11 06:49:51 +00:00
tst_macnativeevents.cpp Various tests: Replace Q[TRY]_VERIFY(a == b) by Q[TRY]_COMPARE(a, b). 2015-07-28 13:18:55 +00:00