Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6fdf4920
Commit
6fdf4920
authored
Oct 20, 2016
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comtrl32/treeview: Display state value as hex.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e9da184b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
treeview.c
dlls/comctl32/treeview.c
+2
-2
No files found.
dlls/comctl32/treeview.c
View file @
6fdf4920
...
...
@@ -4448,7 +4448,7 @@ TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
assert
(
newSelect
==
NULL
||
TREEVIEW_ValidItem
(
infoPtr
,
newSelect
));
TRACE
(
"Entering item %p (%s), flag 0x%x, cause 0x%x, state
%d
\n
"
,
TRACE
(
"Entering item %p (%s), flag 0x%x, cause 0x%x, state
0x%x
\n
"
,
newSelect
,
TREEVIEW_ItemName
(
newSelect
),
action
,
cause
,
newSelect
?
newSelect
->
state
:
0
);
...
...
@@ -4523,7 +4523,7 @@ TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
break
;
}
TRACE
(
"Leaving state
%d
\n
"
,
newSelect
?
newSelect
->
state
:
0
);
TRACE
(
"Leaving state
0x%x
\n
"
,
newSelect
?
newSelect
->
state
:
0
);
return
TRUE
;
}
...
...
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