- fixed <rdar://problem/
4067981> Mail places RTF flavor before RTFD flavor when dragging
mixed image/text content.
* WebView.subproj/WebHTMLView.m:
(+[WebHTMLView _selectionPasteboardTypes]):
put RTFD type before RTF type in array of types to declare
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@9150
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-05-10 John Sullivan <sullivan@apple.com>
+
+ Reviewed by Chris.
+
+ - fixed <rdar://problem/4067981> Mail places RTF flavor before RTFD flavor when dragging
+ mixed image/text content.
+
+ * WebView.subproj/WebHTMLView.m:
+ (+[WebHTMLView _selectionPasteboardTypes]):
+ put RTFD type before RTF type in array of types to declare
+
2005-05-09 Chris Blumenberg <cblu@apple.com>
Turned assertion into error message to prevent crash when encountering this bug:
+ (NSArray *)_selectionPasteboardTypes
{
// FIXME: We should put data for NSHTMLPboardType on the pasteboard but Microsoft Excel doesn't like our format of HTML (3640423).
- return [NSArray arrayWithObjects:WebArchivePboardType, NSRTFPboardType, NSRTFDPboardType, NSStringPboardType, nil];
+ return [NSArray arrayWithObjects:WebArchivePboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, nil];
}
- (WebArchive *)_selectedArchive