Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3b336da9
Commit
3b336da9
authored
Sep 02, 2009
by
Ge van Geldorp
Committed by
Alexandre Julliard
Sep 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus/tests: Fix test on Win7.
parent
1134f77d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
pen.c
dlls/gdiplus/tests/pen.c
+3
-2
No files found.
dlls/gdiplus/tests/pen.c
View file @
3b336da9
...
...
@@ -43,7 +43,7 @@ static void test_startup(void)
expect
(
Ok
,
status
);
GdiplusShutdown
(
gdiplusToken
);
gdiplusStartupInput
.
GdiplusVersion
=
2
;
gdiplusStartupInput
.
GdiplusVersion
=
4
2
;
status
=
GdiplusStartup
(
&
gdiplusToken
,
&
gdiplusStartupInput
,
NULL
);
expect
(
UnsupportedGdiplusVersion
,
status
);
...
...
@@ -219,7 +219,8 @@ static void test_dasharray(void)
/* Try to set with count = 0. */
GdipSetPenDashStyle
(
pen
,
DashStyleDot
);
status
=
GdipSetPenDashArray
(
pen
,
dashes
,
0
);
expect
(
OutOfMemory
,
status
);
ok
(
status
==
OutOfMemory
||
status
==
InvalidParameter
,
"Expected OutOfMemory or InvalidParameter, got %.8x
\n
"
,
status
);
GdipGetPenDashStyle
(
pen
,
&
style
);
expect
(
DashStyleDot
,
style
);
...
...
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