vcl/osx/vclnsapp.mm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c06570c6e919ee090715049abfdfbd55d34aa467
Author:     Alyssa Ross <h...@alyssa.is>
AuthorDate: Sun Nov 18 10:42:29 2018 +0000
Commit:     Tor Lillqvist <t...@collabora.com>
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 <t...@collabora.com>
    Tested-by: Tor Lillqvist <t...@collabora.com>

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
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to