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
7bd581e6
Commit
7bd581e6
authored
Oct 01, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/datetime: Use SDK defined class name instead of another local constant.
parent
170e425b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
datetime.c
dlls/comctl32/datetime.c
+1
-2
No files found.
dlls/comctl32/datetime.c
View file @
7bd581e6
...
...
@@ -1241,7 +1241,6 @@ DATETIME_SetFont (DATETIME_INFO *infoPtr, HFONT font, BOOL repaint)
static
LRESULT
DATETIME_Create
(
HWND
hwnd
,
const
CREATESTRUCTW
*
lpcs
)
{
static
const
WCHAR
SysMonthCal32W
[]
=
{
'S'
,
'y'
,
's'
,
'M'
,
'o'
,
'n'
,
't'
,
'h'
,
'C'
,
'a'
,
'l'
,
'3'
,
'2'
,
0
};
DATETIME_INFO
*
infoPtr
=
Alloc
(
sizeof
(
DATETIME_INFO
));
STYLESTRUCT
ss
=
{
0
,
lpcs
->
style
};
...
...
@@ -1262,7 +1261,7 @@ DATETIME_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
DATETIME_SetFormatW
(
infoPtr
,
0
);
/* create the monthcal control */
infoPtr
->
hMonthCal
=
CreateWindowExW
(
0
,
SysMonthCal32W
,
0
,
WS_BORDER
|
WS_POPUP
|
WS_CLIPSIBLINGS
,
infoPtr
->
hMonthCal
=
CreateWindowExW
(
0
,
MONTHCAL_CLASSW
,
0
,
WS_BORDER
|
WS_POPUP
|
WS_CLIPSIBLINGS
,
0
,
0
,
0
,
0
,
infoPtr
->
hwndSelf
,
0
,
0
,
0
);
/* initialize info structure */
...
...
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