Changeset 205531 in webkit


Ignore:
Timestamp:
Sep 6, 2016 5:49:11 PM (8 years ago)
Author:
dbates@webkit.org
Message:

[iOS] WebKit2 fails to build with iOS 10 beta SDK - "'UIWKTextInteractionAssistant' may not respond to 'selectAll:'"
https://bugs.webkit.org/show_bug.cgi?id=161663

Reviewed by Darin Adler.

The UIResponderStandardEditActions extensions, including the selectAll: message, are now
part of a formal protocol by the same name as of the iOS 10 beta SDK.

  • Platform/spi/ios/UIKitSPI.h:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r205527 r205531  
     12016-09-06  Daniel Bates  <dabates@apple.com>
     2
     3        [iOS] WebKit2 fails to build with iOS 10 beta SDK - "'UIWKTextInteractionAssistant' may not respond to 'selectAll:'"
     4        https://bugs.webkit.org/show_bug.cgi?id=161663
     5
     6        Reviewed by Darin Adler.
     7
     8        The UIResponderStandardEditActions extensions, including the selectAll: message, are now
     9        part of a formal protocol by the same name as of the iOS 10 beta SDK.
     10
     11        * Platform/spi/ios/UIKitSPI.h:
     12
    1132016-09-06  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/Source/WebKit2/Platform/spi/ios/UIKitSPI.h

    r205247 r205531  
    542542@end
    543543
    544 @interface UIWKTextInteractionAssistant : UITextInteractionAssistant
     544#if __IPHONE_OS_VERSION_MAX_ALLOWED < 100000
     545@protocol UIResponderStandardEditActions
     546@end
     547#endif
     548
     549@interface UIWKTextInteractionAssistant : UITextInteractionAssistant <UIResponderStandardEditActions>
    545550@end
    546551
Note: See TracChangeset for help on using the changeset viewer.