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
758c453f
Commit
758c453f
authored
Sep 05, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add/fix the trailing '\n' in Wine traces.
parent
e1797b53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
brush.c
dlls/gdiplus/brush.c
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+2
-2
No files found.
dlls/gdiplus/brush.c
View file @
758c453f
...
...
@@ -580,7 +580,7 @@ GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode,
{
GpImageAttributes
imageattr
;
TRACE
(
"%p %d %d %d %d %d %p"
,
image
,
wrapmode
,
x
,
y
,
width
,
height
,
TRACE
(
"%p %d %d %d %d %d %p
\n
"
,
image
,
wrapmode
,
x
,
y
,
width
,
height
,
texture
);
imageattr
.
wrap
=
wrapmode
;
...
...
dlls/gdiplus/graphics.c
View file @
758c453f
...
...
@@ -1441,7 +1441,7 @@ GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
{
GpPointF
points
[
3
];
TRACE
(
"(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)
\n
)
"
,
TRACE
(
"(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)
\n
"
,
graphics
,
image
,
dstx
,
dsty
,
dstwidth
,
dstheight
,
srcx
,
srcy
,
srcwidth
,
srcheight
,
srcUnit
,
imageattr
,
callback
,
callbackData
);
...
...
@@ -1464,7 +1464,7 @@ GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
{
GpPointF
points
[
3
];
TRACE
(
"(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)
\n
)
"
,
TRACE
(
"(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)
\n
"
,
graphics
,
image
,
dstx
,
dsty
,
dstwidth
,
dstheight
,
srcx
,
srcy
,
srcwidth
,
srcheight
,
srcUnit
,
imageAttributes
,
callback
,
callbackData
);
...
...
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