vcl/osx/vclnsapp.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c06570c6e919ee090715049abfdfbd55d34aa467 Author: Alyssa Ross <[email protected]> AuthorDate: Sun Nov 18 10:42:29 2018 +0000 Commit: Tor Lillqvist <[email protected]> CommitDate: Sun Nov 18 19:16:06 2018 +0100 Fix build on macOS 10.11 Setting an undefined property is a hard error, even though we check for the property first. Using message notation instead reduces this to a warning, and allows the build to continue on systems without allowsAutomaticWindowTabbing. Change-Id: I572d8900fdeca16c733d541084d64385891733c1 Reviewed-on: https://gerrit.libreoffice.org/63526 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <[email protected]> Tested-by: Tor Lillqvist <[email protected]> diff --git a/vcl/osx/vclnsapp.mm b/vcl/osx/vclnsapp.mm index 321fa2d6a68c..223094e96c98 100644 --- a/vcl/osx/vclnsapp.mm +++ b/vcl/osx/vclnsapp.mm @@ -64,7 +64,7 @@ (void)pNotification; if( [NSWindow respondsToSelector:@selector(allowsAutomaticWindowTabbing)] ) { - NSWindow.allowsAutomaticWindowTabbing = NO; + [NSWindow setAllowsAutomaticWindowTabbing:NO]; } } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
