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
b227f754
Commit
b227f754
authored
Jan 01, 2011
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jan 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Remove the last, unused parameter from LISTVIEW_HScroll.
parent
f8ee2f62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
listview.c
dlls/comctl32/listview.c
+6
-6
No files found.
dlls/comctl32/listview.c
View file @
b227f754
...
...
@@ -457,7 +457,7 @@ static BOOL LISTVIEW_KeySelection(LISTVIEW_INFO *, INT, BOOL);
static
UINT
LISTVIEW_GetItemState
(
const
LISTVIEW_INFO
*
,
INT
,
UINT
);
static
BOOL
LISTVIEW_SetItemState
(
LISTVIEW_INFO
*
,
INT
,
const
LVITEMW
*
);
static
LRESULT
LISTVIEW_VScroll
(
LISTVIEW_INFO
*
,
INT
,
INT
);
static
LRESULT
LISTVIEW_HScroll
(
LISTVIEW_INFO
*
,
INT
,
INT
,
HWND
);
static
LRESULT
LISTVIEW_HScroll
(
LISTVIEW_INFO
*
,
INT
,
INT
);
static
BOOL
LISTVIEW_EnsureVisible
(
LISTVIEW_INFO
*
,
INT
,
BOOL
);
static
HIMAGELIST
LISTVIEW_SetImageList
(
LISTVIEW_INFO
*
,
INT
,
HIMAGELIST
);
static
INT
LISTVIEW_HitTest
(
const
LISTVIEW_INFO
*
,
LPLVHITTESTINFO
,
BOOL
,
BOOL
);
...
...
@@ -6065,7 +6065,7 @@ static BOOL LISTVIEW_EnsureVisible(LISTVIEW_INFO *infoPtr, INT nItem, BOOL bPart
{
INT
diff
=
nHorzDiff
/
nScrollPosWidth
;
if
(
nHorzDiff
%
nScrollPosWidth
)
diff
+=
nHorzAdjust
;
LISTVIEW_HScroll
(
infoPtr
,
SB_INTERNAL
,
diff
,
0
);
LISTVIEW_HScroll
(
infoPtr
,
SB_INTERNAL
,
diff
);
}
if
(
nScrollPosHeight
)
...
...
@@ -7837,7 +7837,7 @@ static BOOL LISTVIEW_Scroll(LISTVIEW_INFO *infoPtr, INT dx, INT dy)
break
;
}
if
(
dx
!=
0
)
LISTVIEW_HScroll
(
infoPtr
,
SB_INTERNAL
,
dx
,
0
);
if
(
dx
!=
0
)
LISTVIEW_HScroll
(
infoPtr
,
SB_INTERNAL
,
dx
);
if
(
dy
!=
0
)
LISTVIEW_VScroll
(
infoPtr
,
SB_INTERNAL
,
dy
);
return
TRUE
;
...
...
@@ -9576,7 +9576,7 @@ static LRESULT LISTVIEW_VScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
*
*/
static
LRESULT
LISTVIEW_HScroll
(
LISTVIEW_INFO
*
infoPtr
,
INT
nScrollCode
,
INT
nScrollDiff
,
HWND
hScrollWnd
)
INT
nScrollDiff
)
{
INT
nOldScrollPos
,
nNewScrollPos
;
SCROLLINFO
scrollInfo
;
...
...
@@ -9690,7 +9690,7 @@ static LRESULT LISTVIEW_MouseWheel(LISTVIEW_INFO *infoPtr, INT wheelDelta)
break
;
case
LV_VIEW_LIST
:
LISTVIEW_HScroll
(
infoPtr
,
(
gcWheelDelta
<
0
)
?
SB_LINELEFT
:
SB_LINERIGHT
,
0
,
0
);
LISTVIEW_HScroll
(
infoPtr
,
(
gcWheelDelta
<
0
)
?
SB_LINELEFT
:
SB_LINERIGHT
,
0
);
break
;
}
return
0
;
...
...
@@ -11431,7 +11431,7 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
(
LRESULT
)
infoPtr
->
hFont
;
case
WM_HSCROLL
:
return
LISTVIEW_HScroll
(
infoPtr
,
(
INT
)
LOWORD
(
wParam
),
0
,
(
HWND
)
lParam
);
return
LISTVIEW_HScroll
(
infoPtr
,
(
INT
)
LOWORD
(
wParam
),
0
);
case
WM_KEYDOWN
:
return
LISTVIEW_KeyDown
(
infoPtr
,
(
INT
)
wParam
,
(
LONG
)
lParam
);
...
...
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