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
0ec9d398
Commit
0ec9d398
authored
Jun 28, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Jun 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Fix the order of arguments to expectf in test_string_functions.
parent
436ec812
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
graphics.c
dlls/gdiplus/tests/graphics.c
+3
-3
No files found.
dlls/gdiplus/tests/graphics.c
View file @
0ec9d398
...
...
@@ -3087,7 +3087,7 @@ static void test_string_functions(void)
identity
,
&
rc
);
todo_wine
expect
(
Ok
,
status
);
expectf
(
rc
.
X
,
0
.
0
);
expectf
(
0
.
0
,
rc
.
X
);
todo_wine
ok
(
rc
.
Y
<
0
.
0
,
"unexpected Y %0.2f
\n
"
,
rc
.
Y
);
todo_wine
ok
(
rc
.
Width
>
0
.
0
,
"unexpected Width %0.2f
\n
"
,
rc
.
Width
);
todo_wine
ok
(
rc
.
Height
>
0
.
0
,
"unexpected Y %0.2f
\n
"
,
rc
.
Y
);
...
...
@@ -3104,10 +3104,10 @@ static void test_string_functions(void)
identity
,
&
rc
);
todo_wine
expect
(
Ok
,
status
);
expectf
(
rc
.
X
,
0
.
0
);
expectf
(
0
.
0
,
rc
.
X
);
todo_wine
ok
(
rc
.
Y
<
0
.
0
,
"unexpected Y %0.2f
\n
"
,
rc
.
Y
);
todo_wine
ok
(
rc
.
Width
<
char_width
,
"got Width %0.2f, expecting less than %0.2f
\n
"
,
rc
.
Width
,
char_width
);
expectf
(
rc
.
Height
,
char_h
eight
);
expectf
(
char_height
,
rc
.
H
eight
);
GdipDeleteMatrix
(
identity
);
GdipDeleteStringFormat
(
format
);
...
...
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