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
4e700ab9
Commit
4e700ab9
authored
May 08, 1999
by
Huw D M Davies
Committed by
Alexandre Julliard
May 08, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix for TRACE in UnregisterClass.
parent
6fbe0793
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
class.c
windows/class.c
+2
-2
No files found.
windows/class.c
View file @
4e700ab9
...
...
@@ -664,7 +664,7 @@ BOOL WINAPI UnregisterClassA( LPCSTR className, HINSTANCE hInstance )
ATOM
atom
;
BOOL
ret
;
TRACE
(
class
,
"%s %x
\n
"
,
className
,
hInstance
);
TRACE
(
class
,
"%s %x
\n
"
,
debugres_a
(
className
)
,
hInstance
);
if
(
!
(
atom
=
GlobalFindAtomA
(
className
)))
{
...
...
@@ -690,7 +690,7 @@ BOOL WINAPI UnregisterClassW( LPCWSTR className, HINSTANCE hInstance )
ATOM
atom
;
BOOL
ret
;
TRACE
(
class
,
"%s %x
\n
"
,
debug
str
_w
(
className
),
hInstance
);
TRACE
(
class
,
"%s %x
\n
"
,
debug
res
_w
(
className
),
hInstance
);
if
(
!
(
atom
=
GlobalFindAtomW
(
className
)))
{
...
...
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