Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0b6d74c4
Commit
0b6d74c4
authored
Apr 17, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Apr 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Fix typo so that emf -> mfpict synthesis works.
parent
0d4451a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
clipboard.c
dlls/user32/tests/clipboard.c
+2
-3
clipboard.c
dlls/winex11.drv/clipboard.c
+1
-1
No files found.
dlls/user32/tests/clipboard.c
View file @
0b6d74c4
...
...
@@ -247,10 +247,9 @@ static void test_synthesized(void)
ok
(
cf
==
CF_UNICODETEXT
,
"cf %08x
\n
"
,
cf
);
cf
=
EnumClipboardFormats
(
cf
);
todo_wine
ok
(
cf
==
CF_METAFILEPICT
,
"cf %08x
\n
"
,
cf
);
if
(
cf
==
CF_METAFILEPICT
)
cf
=
EnumClipboardFormats
(
cf
);
ok
(
cf
==
CF_METAFILEPICT
,
"cf %08x
\n
"
,
cf
);
cf
=
EnumClipboardFormats
(
cf
);
ok
(
cf
==
0
,
"cf %08x
\n
"
,
cf
);
r
=
EmptyClipboard
();
...
...
dlls/winex11.drv/clipboard.c
View file @
0b6d74c4
...
...
@@ -2746,7 +2746,7 @@ static BOOL X11DRV_CLIPBOARD_SynthesizeData(UINT wFormatID)
}
else
if
(
wFormatID
==
CF_METAFILEPICT
)
{
bsyn
=
(
lpSource
=
X11DRV_CLIPBOARD_LookupData
(
CF_
METAFILEPICT
))
&&
bsyn
=
(
lpSource
=
X11DRV_CLIPBOARD_LookupData
(
CF_
ENHMETAFILE
))
&&
~
lpSource
->
wFlags
&
CF_FLAG_SYNTHESIZED
;
}
else
if
(
wFormatID
==
CF_DIB
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment