diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-10-27 14:10:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-10-27 16:32:04 +0200 |
commit | 323a2a249a6c87ffde52a1e826d5d12be649e018 (patch) | |
tree | 90cec5b4284aef7b12df1b970c473dee29d737f6 /fpicker/source | |
parent | 13b2d160ec41ecce118e419d3bcab8004d4d858d (diff) |
Add support for macOS SDK 12.0
...and for now just silence all the new deprecation warnings
Change-Id: Ic6e04f4bade91a823872cd4e453c41ee1950bd77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124275
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker/source')
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fpicker/source/aqua/SalAquaFilePicker.mm b/fpicker/source/aqua/SalAquaFilePicker.mm index 6c16b04fc702..fa2ec600c2ec 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.mm +++ b/fpicker/source/aqua/SalAquaFilePicker.mm @@ -539,7 +539,9 @@ void SalAquaFilePicker::updateSaveFileNameExtension() SolarMutexGuard aGuard; if (!m_pControlHelper->isAutoExtensionEnabled()) { + SAL_WNODEPRECATED_DECLARATIONS_PUSH // setAllowedFileTypes (12.0) [m_pDialog setAllowedFileTypes:nil]; + SAL_WNODEPRECATED_DECLARATIONS_POP [m_pDialog setAllowsOtherFileTypes:YES]; } else { ensureFilterHelper(); @@ -551,7 +553,9 @@ void SalAquaFilePicker::updateSaveFileNameExtension() OUString suffix = (*(aStringList.begin())).copy(1); NSString *requiredFileType = [NSString stringWithOUString:suffix]; + SAL_WNODEPRECATED_DECLARATIONS_PUSH // setAllowedFileTypes (12.0) [m_pDialog setAllowedFileTypes:[NSArray arrayWithObjects:requiredFileType, nil]]; + SAL_WNODEPRECATED_DECLARATIONS_POP [m_pDialog setAllowsOtherFileTypes:NO]; } |