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
94dfbcaa
Commit
94dfbcaa
authored
Aug 04, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Remove some noise from function names.
Everything in this file is about Monthcal.
parent
8e968fd2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
28 deletions
+28
-28
monthcal.c
dlls/comctl32/tests/monthcal.c
+28
-28
No files found.
dlls/comctl32/tests/monthcal.c
View file @
94dfbcaa
...
...
@@ -611,7 +611,7 @@ static HWND create_monthcal_control(DWORD style)
/* Setter and Getters Tests */
static
void
test_
monthcal_
color
(
void
)
static
void
test_color
(
void
)
{
int
res
,
temp
;
HWND
hwnd
;
...
...
@@ -686,7 +686,7 @@ static void test_monthcal_color(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
currdate
(
void
)
static
void
test_currdate
(
void
)
{
SYSTEMTIME
st_original
,
st_new
,
st_test
;
int
res
;
...
...
@@ -816,7 +816,7 @@ static void test_monthcal_currdate(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
firstDay
(
void
)
static
void
test_firstDay
(
void
)
{
int
res
,
fday
,
i
,
prev
;
CHAR
b
[
128
];
...
...
@@ -863,7 +863,7 @@ static void test_monthcal_firstDay(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
unicode
(
void
)
static
void
test_unicode
(
void
)
{
int
res
,
temp
;
HWND
hwnd
;
...
...
@@ -906,7 +906,7 @@ static void test_monthcal_unicode(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
hittest
(
void
)
static
void
test_hittest
(
void
)
{
typedef
struct
hittest_test
{
...
...
@@ -1157,7 +1157,7 @@ static void test_monthcal_hittest(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
todaylink
(
void
)
static
void
test_todaylink
(
void
)
{
MCHITTESTINFO
mchit
;
SYSTEMTIME
st_test
,
st_new
;
...
...
@@ -1212,7 +1212,7 @@ static void test_monthcal_todaylink(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
today
(
void
)
static
void
test_today
(
void
)
{
SYSTEMTIME
st_test
,
st_new
;
int
res
;
...
...
@@ -1267,7 +1267,7 @@ static void test_monthcal_today(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
scroll
(
void
)
static
void
test_scroll
(
void
)
{
int
res
;
HWND
hwnd
;
...
...
@@ -1305,7 +1305,7 @@ static void test_monthcal_scroll(void)
DestroyWindow
(
hwnd
);
}
static
void
test_month
cal_month
range
(
void
)
static
void
test_monthrange
(
void
)
{
int
res
;
SYSTEMTIME
st_visible
[
2
],
st_daystate
[
2
],
st
;
...
...
@@ -1398,7 +1398,7 @@ static void test_monthcal_monthrange(void)
DestroyWindow
(
hwnd
);
}
static
void
test_m
onthcal_m
axselday
(
void
)
static
void
test_maxselday
(
void
)
{
int
res
;
HWND
hwnd
;
...
...
@@ -1464,7 +1464,7 @@ static void test_monthcal_maxselday(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
size
(
void
)
static
void
test_size
(
void
)
{
int
res
;
RECT
r1
,
r2
;
...
...
@@ -1500,7 +1500,7 @@ static void test_monthcal_size(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
create
(
void
)
static
void
test_create
(
void
)
{
HWND
hwnd
;
...
...
@@ -1517,7 +1517,7 @@ static void test_monthcal_create(void)
DestroyWindow
(
hwnd
);
}
static
void
test_
monthcal_
destroy
(
void
)
static
void
test_destroy
(
void
)
{
HWND
hwnd
;
...
...
@@ -1534,7 +1534,7 @@ static void test_monthcal_destroy(void)
ok_sequence
(
sequences
,
MONTHCAL_SEQ_INDEX
,
destroy_monthcal_multi_sel_style_seq
,
"Destroy monthcal (multi sel style)"
,
FALSE
);
}
static
void
test_
monthcal_
selrange
(
void
)
static
void
test_selrange
(
void
)
{
HWND
hwnd
;
SYSTEMTIME
st
,
range
[
2
],
range2
[
2
];
...
...
@@ -1809,20 +1809,20 @@ START_TEST(monthcal)
parent_wnd
=
create_parent_window
();
test_
monthcal_
create
();
test_
monthcal_
destroy
();
test_
monthcal_
color
();
test_
monthcal_
currdate
();
test_
monthcal_
firstDay
();
test_
monthcal_
unicode
();
test_
monthcal_
today
();
test_
monthcal_
scroll
();
test_month
cal_month
range
();
test_
monthcal_
hittest
();
test_
monthcal_
todaylink
();
test_
monthcal_
size
();
test_m
onthcal_m
axselday
();
test_
monthcal_
selrange
();
test_create
();
test_destroy
();
test_color
();
test_currdate
();
test_firstDay
();
test_unicode
();
test_today
();
test_scroll
();
test_monthrange
();
test_hittest
();
test_todaylink
();
test_size
();
test_maxselday
();
test_selrange
();
test_killfocus
();
if
(
!
load_v6_module
(
&
ctx_cookie
,
&
hCtx
))
...
...
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