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
d7876a2c
Commit
d7876a2c
authored
Dec 27, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Dec 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Simplify DATETIME_Char.
parent
d7d6ceb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
datetime.c
dlls/comctl32/datetime.c
+2
-2
No files found.
dlls/comctl32/datetime.c
View file @
d7876a2c
...
@@ -949,7 +949,7 @@ DATETIME_KeyDown (DATETIME_INFO *infoPtr, DWORD vkCode)
...
@@ -949,7 +949,7 @@ DATETIME_KeyDown (DATETIME_INFO *infoPtr, DWORD vkCode)
static
LRESULT
static
LRESULT
DATETIME_Char
(
DATETIME_INFO
*
infoPtr
,
WPARAM
vkCode
,
LPARAM
keyData
)
DATETIME_Char
(
DATETIME_INFO
*
infoPtr
,
WPARAM
vkCode
)
{
{
int
fieldNum
=
infoPtr
->
select
&
DTHT_DATEFIELD
;
int
fieldNum
=
infoPtr
->
select
&
DTHT_DATEFIELD
;
...
@@ -1353,7 +1353,7 @@ DATETIME_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
@@ -1353,7 +1353,7 @@ DATETIME_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
DATETIME_KeyDown
(
infoPtr
,
wParam
);
return
DATETIME_KeyDown
(
infoPtr
,
wParam
);
case
WM_CHAR
:
case
WM_CHAR
:
return
DATETIME_Char
(
infoPtr
,
wParam
,
lParam
);
return
DATETIME_Char
(
infoPtr
,
wParam
);
case
WM_KILLFOCUS
:
case
WM_KILLFOCUS
:
return
DATETIME_KillFocus
(
infoPtr
,
(
HWND
)
wParam
);
return
DATETIME_KillFocus
(
infoPtr
,
(
HWND
)
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