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
c4b54f8f
Commit
c4b54f8f
authored
Nov 08, 1998
by
Eric Kohl
Committed by
Alexandre Julliard
Nov 08, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Little improvement.
parent
dc17f8de
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
pager.c
dlls/comctl32/pager.c
+13
-3
No files found.
dlls/comctl32/pager.c
View file @
c4b54f8f
...
@@ -256,7 +256,17 @@ PAGER_EraseBackground (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
...
@@ -256,7 +256,17 @@ PAGER_EraseBackground (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
}
}
// << PAGER_MouseMove >>
static
LRESULT
PAGER_MouseMove
(
WND
*
wndPtr
,
WPARAM32
wParam
,
LPARAM
lParam
)
{
PAGER_INFO
*
infoPtr
=
PAGER_GetInfoPtr
(
wndPtr
);
TRACE
(
pager
,
"stub!
\n
"
);
return
0
;
}
// << PAGER_Paint >>
// << PAGER_Paint >>
...
@@ -336,8 +346,8 @@ PAGER_WindowProc (HWND32 hwnd, UINT32 uMsg, WPARAM32 wParam, LPARAM lParam)
...
@@ -336,8 +346,8 @@ PAGER_WindowProc (HWND32 hwnd, UINT32 uMsg, WPARAM32 wParam, LPARAM lParam)
case
WM_ERASEBKGND
:
case
WM_ERASEBKGND
:
return
PAGER_EraseBackground
(
wndPtr
,
wParam
,
lParam
);
return
PAGER_EraseBackground
(
wndPtr
,
wParam
,
lParam
);
//
case WM_MOUSEMOVE:
case
WM_MOUSEMOVE
:
//
return PAGER_MouseMove (wndPtr, wParam, lParam);
return
PAGER_MouseMove
(
wndPtr
,
wParam
,
lParam
);
// case WM_PAINT:
// case WM_PAINT:
// return PAGER_Paint (wndPtr, wParam);
// return PAGER_Paint (wndPtr, wParam);
...
...
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