From fdb40ab06b94a367945723f0a026a0303228eb9d Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Sun, 22 Nov 2009 12:57:12 -0600 Subject: [PATCH 1/2] winex11.drv: Remove the HTML Format -> text/html clipboard mapping. The two formats do not match exactly. --- dlls/winex11.drv/clipboard.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/dlls/winex11.drv/clipboard.c b/dlls/winex11.drv/clipboard.c index 82928a2..085836d 100644 --- a/dlls/winex11.drv/clipboard.c +++ b/dlls/winex11.drv/clipboard.c @@ -295,7 +295,6 @@ static const WCHAR wszRichTextFormat[] = {'R','i','c','h',' ','T','e','x','t',' static const WCHAR wszGIF[] = {'G','I','F',0}; static const WCHAR wszJFIF[] = {'J','F','I','F',0}; static const WCHAR wszPNG[] = {'P','N','G',0}; -static const WCHAR wszHTMLFormat[] = {'H','T','M','L',' ','F','o','r','m','a','t',0}; static const struct { LPCWSTR lpszFormat; @@ -307,7 +306,6 @@ static const struct { wszGIF, XATOM_image_gif }, { wszJFIF, XATOM_image_jpeg }, { wszPNG, XATOM_image_png }, - { wszHTMLFormat, XATOM_text_html }, }; -- 1.6.3.3