[Libreoffice-commits] core.git: vcl/osx
Tor Lillqvist (via logerrit)
logerrit at kemper.freedesktop.org
Sun Jul 5 23:11:29 UTC 2020
vcl/osx/salframe.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit a292d2e43fe7f23d90bf823d01a3280da290c5e9
Author: Tor Lillqvist <tml at iki.fi>
AuthorDate: Sun Jul 5 19:23:27 2020 +0300
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Mon Jul 6 01:10:46 2020 +0200
Avoid warning about deprecation in macOS 11.0
Change-Id: Ie1a7e19093b439eb133632ee881e1e3dbe58132d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98176
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml at collabora.com>
diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 6f7a395522cf..71cc5a4f1982 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -1279,8 +1279,11 @@ SAL_WNODEPRECATED_DECLARATIONS_POP
aStyleSettings.GetHighlightTextColor(), mpNSWindow ) );
aStyleSettings.SetHighlightTextColor( aHighlightTextColor );
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Color aMenuHighlightColor( getColor( [NSColor selectedMenuItemColor],
aStyleSettings.GetMenuHighlightColor(), mpNSWindow ) );
+#pragma clang diagnostic pop
aStyleSettings.SetMenuHighlightColor( aMenuHighlightColor );
Color aMenuHighlightTextColor( getColor( [NSColor selectedMenuItemTextColor],
aStyleSettings.GetMenuHighlightTextColor(), mpNSWindow ) );
More information about the Libreoffice-commits
mailing list