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
225148b9
Commit
225148b9
authored
Jul 12, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Jul 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few region debug messages.
parent
bb1194ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
region.c
objects/region.c
+3
-3
No files found.
objects/region.c
View file @
225148b9
...
...
@@ -996,7 +996,7 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
{
HRGN
hrgn
;
TRACE
(
" %p %ld %p
=
"
,
lpXform
,
dwCount
,
rgndata
);
TRACE
(
" %p %ld %p
\n
"
,
lpXform
,
dwCount
,
rgndata
);
if
(
lpXform
)
WARN
(
"(Xform not implemented - ignored)
\n
"
);
...
...
@@ -1006,7 +1006,7 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
/* FIXME: We can use CreatePolyPolygonRgn() here
* for trapezoidal data */
WARN
(
"(Unsupported region data
)
\n
"
);
WARN
(
"(Unsupported region data
type: %lu)
\n
"
,
rgndata
->
rdh
.
iType
);
goto
fail
;
}
...
...
@@ -1024,7 +1024,7 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
}
GDI_ReleaseObj
(
hrgn
);
TRACE
(
"%p
\n
"
,
hrgn
);
TRACE
(
"
--
%p
\n
"
,
hrgn
);
return
hrgn
;
}
else
ERR
(
"Could not get pointer to newborn Region!
\n
"
);
...
...
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