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
ec3e9308
Commit
ec3e9308
authored
Oct 04, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/monthcal: Drop exstyle parameter, it isn't used.
parent
700d9df4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
datetime.c
dlls/comctl32/tests/datetime.c
+9
-9
No files found.
dlls/comctl32/tests/datetime.c
View file @
ec3e9308
...
...
@@ -149,7 +149,7 @@ static LRESULT WINAPI datetime_subclass_proc(HWND hwnd, UINT message, WPARAM wPa
return
ret
;
}
static
HWND
create_datetime_control
(
DWORD
style
,
DWORD
exstyle
)
static
HWND
create_datetime_control
(
DWORD
style
)
{
struct
subclass_info
*
info
;
HWND
hWndDateTime
=
NULL
;
...
...
@@ -187,7 +187,7 @@ static void test_dtm_set_format(void)
SYSTEMTIME
systime
;
LRESULT
r
;
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -238,7 +238,7 @@ static void test_dtm_set_and_get_mccolor(void)
{
HWND
hWnd
;
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -259,7 +259,7 @@ static void test_dtm_set_and_get_mcfont(void)
HFONT
hFontOrig
,
hFontNew
;
HWND
hWnd
;
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -277,7 +277,7 @@ static void test_dtm_get_monthcal(void)
LRESULT
r
;
HWND
hWnd
;
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -337,7 +337,7 @@ static void test_dtm_set_and_get_range(void)
SYSTEMTIME
getSt
[
2
];
HWND
hWnd
;
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -423,7 +423,7 @@ static void test_dtm_set_range_swap_min_max(void)
SYSTEMTIME
origSt
;
HWND
hWnd
;
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
fill_systime_struct
(
&
st
[
0
],
2007
,
2
,
4
,
15
,
2
,
2
,
2
,
2
);
...
...
@@ -527,7 +527,7 @@ static void test_dtm_set_and_get_system_time(void)
SYSTEMTIME
st
,
getSt
,
ref
;
HWND
hWnd
,
hWndDateTime_test_gdt_none
;
hWndDateTime_test_gdt_none
=
create_datetime_control
(
0
,
0
);
hWndDateTime_test_gdt_none
=
create_datetime_control
(
0
);
ok
(
hWndDateTime_test_gdt_none
!=
NULL
,
"Expected non NULL, got %p
\n
"
,
hWndDateTime_test_gdt_none
);
if
(
hWndDateTime_test_gdt_none
)
{
...
...
@@ -543,7 +543,7 @@ static void test_dtm_set_and_get_system_time(void)
DestroyWindow
(
hWndDateTime_test_gdt_none
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
,
0
);
hWnd
=
create_datetime_control
(
DTS_SHOWNONE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
r
=
SendMessage
(
hWnd
,
DTM_SETSYSTEMTIME
,
GDT_NONE
,
(
LPARAM
)
&
st
);
...
...
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