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
504cfe51
Commit
504cfe51
authored
Jan 12, 2000
by
Alex Priem
Committed by
Alexandre Julliard
Jan 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InfoPtr checking mixed up WM_DESTROY and WM_CREATE.
parent
e1fd1cce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
treeview.c
dlls/comctl32/treeview.c
+4
-4
No files found.
dlls/comctl32/treeview.c
View file @
504cfe51
...
...
@@ -3673,8 +3673,8 @@ TREEVIEW_SetScrollTime (HWND hwnd, UINT uScrollTime)
static
LRESULT
WINAPI
TREEVIEW_WindowProc
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
if
(
uMsg
==
WM_
DESTROY
)
return
TREEVIEW_
Destroy
(
hwnd
);
if
(
uMsg
==
WM_
CREATE
)
return
TREEVIEW_
Create
(
hwnd
,
wParam
,
lParam
);
if
(
!
TREEVIEW_GetInfoPtr
(
hwnd
))
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -3831,8 +3831,8 @@ TREEVIEW_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case
WM_COMMAND
:
return
TREEVIEW_Command
(
hwnd
,
wParam
,
lParam
);
case
WM_
CREATE
:
return
TREEVIEW_
Create
(
hwnd
,
wParam
,
lParam
);
case
WM_
DESTROY
:
return
TREEVIEW_
Destroy
(
hwnd
);
/* case WM_ENABLE: */
...
...
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