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
28f15a3b
Commit
28f15a3b
authored
Jul 15, 2005
by
Kevin Koltzau
Committed by
Alexandre Julliard
Jul 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward some header notifications to parent of listview.
parent
2e7f3ad7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
listview.c
dlls/comctl32/listview.c
+13
-2
No files found.
dlls/comctl32/listview.c
View file @
28f15a3b
...
...
@@ -739,6 +739,12 @@ static inline LPCSTR debugscrollcode(int nScrollCode)
/******** Notification functions i************************************/
static
LRESULT
notify_forward_header
(
LISTVIEW_INFO
*
infoPtr
,
const
NMHEADERW
*
lpnmh
)
{
return
SendMessageW
(
infoPtr
->
hwndNotify
,
WM_NOTIFY
,
(
WPARAM
)
lpnmh
->
hdr
.
idFrom
,
(
LPARAM
)
lpnmh
);
}
static
LRESULT
notify_hdr
(
LISTVIEW_INFO
*
infoPtr
,
INT
code
,
LPNMHDR
pnmh
)
{
LRESULT
result
;
...
...
@@ -8270,10 +8276,15 @@ static LRESULT LISTVIEW_HeaderNotification(LISTVIEW_INFO *infoPtr, const NMHEADE
switch
(
lpnmh
->
hdr
.
code
)
{
case
HDN_TRACKW
:
case
HDN_TRACKA
:
case
HDN_ITEMCHANGINGW
:
case
HDN_ITEMCHANGINGA
:
return
notify_forward_header
(
infoPtr
,
lpnmh
);
case
HDN_ITEMCHANGEDW
:
case
HDN_ITEMCHANGEDA
:
notify_forward_header
(
infoPtr
,
lpnmh
);
/* Fall through */
case
HDN_TRACKW
:
case
HDN_TRACKA
:
{
COLUMN_INFO
*
lpColumnInfo
;
INT
dx
,
cxy
;
...
...
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