diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-06-05 01:17:56 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-06-05 07:44:56 +0300 |
commit | 4d3628ca769ce07c93e8c4629075eeb7c8dc317e (patch) | |
tree | 0870fbc27fd7201d474d16af1e7ee99c754541bc /fpicker | |
parent | 4378eae8aa5f29d02ac02000ba0d3a769b27c18e (diff) |
The macOS SDK 10.15 has a tighter declaration of objc_msgSend()
Change-Id: I51734b92965a9fa1f06aa18017d39b4b0d532456
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/aqua/SalAquaFilePicker.mm b/fpicker/source/aqua/SalAquaFilePicker.mm index c46cd9cb8739..71a2940dec9e 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.mm +++ b/fpicker/source/aqua/SalAquaFilePicker.mm @@ -162,7 +162,7 @@ sal_Int16 SAL_CALL SalAquaFilePicker::execute() // So instead of: // [m_pDialog setDelegate:m_pDelegate]; // do: - objc_msgSend(m_pDialog, @selector(setDelegate:), m_pDelegate); + ((id (*)(id, SEL, ...))objc_msgSend)(m_pDialog, @selector(setDelegate:), m_pDelegate); int nStatus = runandwaitforresult(); |