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
99aeee62
Commit
99aeee62
authored
Jun 13, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add missing '\n' to ok() calls, Wine traces.
parent
9821acf5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
pen.c
dlls/gdiplus/pen.c
+1
-1
pen.c
dlls/gdiplus/tests/pen.c
+1
-1
No files found.
dlls/gdiplus/pen.c
View file @
99aeee62
...
...
@@ -50,7 +50,7 @@ GpStatus WINGDIPAPI GdipCreatePen1(ARGB color, FLOAT width, GpUnit unit,
gp_pen
->
gdipen
=
ExtCreatePen
(
gp_pen
->
style
,
(
INT
)
gp_pen
->
width
,
&
lb
,
0
,
NULL
);
}
else
{
FIXME
(
"UnitWorld, UnitPixel only supported units"
);
FIXME
(
"UnitWorld, UnitPixel only supported units
\n
"
);
return
NotImplemented
;
}
...
...
dlls/gdiplus/tests/pen.c
View file @
99aeee62
...
...
@@ -63,7 +63,7 @@ static void test_constructor_destructor(void)
status
=
GdipCreatePen1
((
ARGB
)
0xffff00ff
,
10
.
0
f
,
UnitPixel
,
&
pen
);
expect
(
Ok
,
status
);
ok
(
pen
!=
NULL
,
"Expected pen to be initialized"
);
ok
(
pen
!=
NULL
,
"Expected pen to be initialized
\n
"
);
status
=
GdipDeletePen
(
NULL
);
expect
(
InvalidParameter
,
status
);
...
...
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