Changeset 244564 in webkit


Ignore:
Timestamp:
Apr 23, 2019 1:47:43 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

Build fix after r244545.

Patch by Remy Demarest <rdemarest@apple.com> on 2019-04-23
Reviewed by Tim Horton.

  • Platform/spi/mac/AppKitSPI.h:

The SPI was an IPI in High Sierra.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r244559 r244564  
     12019-04-23  Remy Demarest  <rdemarest@apple.com>
     2
     3        Build fix after r244545.
     4
     5        Reviewed by Tim Horton.
     6
     7        * Platform/spi/mac/AppKitSPI.h:
     8        The SPI was an IPI in High Sierra.
     9
    1102019-04-23  Per Arne Vollan  <pvollan@apple.com>
    211
  • trunk/Source/WebKit/Platform/spi/mac/AppKitSPI.h

    r244545 r244564  
    4848@end
    4949
     50#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101400
    5051@interface NSWindow (FullScreenSupport)
    5152@property CGFloat titlebarAlphaValue;
    5253@end
     54#endif
    5355
    5456#endif
     
    5759- (void)_update;
    5860@end
     61
     62#if __MAC_OS_X_VERSION_MAX_ALLOWED < 101400
     63@interface NSWindow (IPI)
     64@property CGFloat titlebarAlphaValue;
     65@end
     66#endif
Note: See TracChangeset for help on using the changeset viewer.