Title: [184300] branches/safari-601.1.32-branch/Source/WebCore
Diff
Modified: branches/safari-601.1.32-branch/Source/WebCore/ChangeLog (184299 => 184300)
--- branches/safari-601.1.32-branch/Source/WebCore/ChangeLog 2015-05-13 19:59:35 UTC (rev 184299)
+++ branches/safari-601.1.32-branch/Source/WebCore/ChangeLog 2015-05-13 20:08:35 UTC (rev 184300)
@@ -1,5 +1,17 @@
2015-05-13 Babak Shafiei <[email protected]>
+ Merge r183958.
+
+ 2015-05-07 Anders Carlsson <[email protected]>
+
+ Build fix.
+
+ * editing/mac/EditorMac.mm:
+ (WebCore::dataInRTFDFormat):
+ (WebCore::dataInRTFFormat):
+
+2015-05-13 Babak Shafiei <[email protected]>
+
Merge r183980.
2015-05-07 Chris Dumez <[email protected]>
Modified: branches/safari-601.1.32-branch/Source/WebCore/editing/mac/EditorMac.mm (184299 => 184300)
--- branches/safari-601.1.32-branch/Source/WebCore/editing/mac/EditorMac.mm 2015-05-13 19:59:35 UTC (rev 184299)
+++ branches/safari-601.1.32-branch/Source/WebCore/editing/mac/EditorMac.mm 2015-05-13 20:08:35 UTC (rev 184300)
@@ -341,7 +341,7 @@
return nullptr;
BEGIN_BLOCK_OBJC_EXCEPTIONS;
- return SharedBuffer::wrapNSData([string RTFDFromRange:NSMakeRange(0, length) documentAttributes:nil]);
+ return SharedBuffer::wrapNSData([string RTFDFromRange:NSMakeRange(0, length) documentAttributes:@{ }]);
END_BLOCK_OBJC_EXCEPTIONS;
return nullptr;
@@ -354,7 +354,7 @@
return nullptr;
BEGIN_BLOCK_OBJC_EXCEPTIONS;
- return SharedBuffer::wrapNSData([string RTFFromRange:NSMakeRange(0, length) documentAttributes:nil]);
+ return SharedBuffer::wrapNSData([string RTFFromRange:NSMakeRange(0, length) documentAttributes:@{ }]);
END_BLOCK_OBJC_EXCEPTIONS;
return nullptr;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes