Changeset 207712 in webkit
- Timestamp:
- Oct 22, 2016, 9:26:36 AM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r207711 r207712 1 2016-10-22 Darin Adler <darin@apple.com> 2 3 [Cocoa] REGRESSION (r204508): Crash in init_WebCreateFragment when pasting (seen in multiple apps using legacy WebKit) 4 https://bugs.webkit.org/show_bug.cgi?id=163839 5 6 Reviewed by Dan Bernstein. 7 8 * editing/cocoa/EditorCocoa.mm: Use the appropriate SOFT_LINK macros to find 9 the WebKitLegacy platform in the correct location for iOS and macOS. 10 1 11 2016-10-22 Nael Ouedraogo <nael.ouedraogo@crf.canon.fr> 2 12 -
trunk/Source/WebCore/editing/cocoa/EditorCocoa.mm
r204508 r207712 41 41 #import "htmlediting.h" 42 42 43 SOFT_LINK_FRAMEWORK(WebKitLegacy) 43 #if PLATFORM(IOS) 44 SOFT_LINK_PRIVATE_FRAMEWORK(WebKitLegacy) 45 #endif 46 47 #if PLATFORM(MAC) 48 SOFT_LINK_FRAMEWORK_IN_UMBRELLA(WebKit, WebKitLegacy) 49 #endif 44 50 45 51 SOFT_LINK(WebKitLegacy, _WebCreateFragment, void, (WebCore::Document& document, NSAttributedString *string, WebCore::FragmentAndResources& result), (document, string, result))
Note:
See TracChangeset
for help on using the changeset viewer.