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
c38d3342
Commit
c38d3342
authored
Dec 26, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Dec 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Fix typo in GdipCreateMetafileFromWmf.
parent
53a33079
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
graphics.c
dlls/gdiplus/graphics.c
+1
-1
image.c
dlls/gdiplus/tests/image.c
+1
-1
No files found.
dlls/gdiplus/graphics.c
View file @
c38d3342
...
...
@@ -1263,7 +1263,7 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
(
*
metafile
)
->
image
.
palette_size
=
0
;
(
*
metafile
)
->
image
.
palette_entries
=
NULL
;
(
*
metafile
)
->
bounds
.
X
=
((
REAL
)
placeable
->
BoundingBox
.
Left
)
/
((
REAL
)
placeable
->
Inch
);
(
*
metafile
)
->
bounds
.
Y
=
((
REAL
)
placeable
->
BoundingBox
.
Right
)
/
((
REAL
)
placeable
->
Inch
);
(
*
metafile
)
->
bounds
.
Y
=
((
REAL
)
placeable
->
BoundingBox
.
Top
)
/
((
REAL
)
placeable
->
Inch
);
(
*
metafile
)
->
bounds
.
Width
=
((
REAL
)
(
placeable
->
BoundingBox
.
Right
-
placeable
->
BoundingBox
.
Left
))
/
((
REAL
)
placeable
->
Inch
);
(
*
metafile
)
->
bounds
.
Height
=
((
REAL
)
(
placeable
->
BoundingBox
.
Bottom
...
...
dlls/gdiplus/tests/image.c
View file @
c38d3342
...
...
@@ -874,7 +874,7 @@ static void test_createfromwmf(void)
expect
(
Ok
,
stat
);
todo_wine
expect
(
UnitPixel
,
unit
);
expectf
(
0
.
0
,
bounds
.
X
);
todo_wine
expectf
(
0
.
0
,
bounds
.
Y
);
expectf
(
0
.
0
,
bounds
.
Y
);
todo_wine
expectf
(
320
.
0
,
bounds
.
Width
);
todo_wine
expectf
(
320
.
0
,
bounds
.
Height
);
...
...
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