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
629eb23a
Commit
629eb23a
authored
Sep 02, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/trackbar: TBM_SETTIC processing shouldn't be affected by TBS_AUTOTICKS style.
parent
5594a5f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
trackbar.c
dlls/comctl32/tests/trackbar.c
+10
-6
trackbar.c
dlls/comctl32/trackbar.c
+0
-3
No files found.
dlls/comctl32/tests/trackbar.c
View file @
629eb23a
...
...
@@ -786,18 +786,22 @@ static void test_thumb_length(HWND hWndTrackbar){
static
void
test_tic_settings
(
HWND
hWndTrackbar
){
int
r
;
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCE
);
/* testing TBM_SETTIC */
/* Set tics at 5 and 10 */
/* 0 and 20 are out of range and should not be set */
r
=
SendMessage
(
hWndTrackbar
,
TBM_GETRANGEMAX
,
0
,
0
);
expect
(
10
,
r
);
r
=
SendMessage
(
hWndTrackbar
,
TBM_GETRANGEMIN
,
0
,
0
);
expect
(
5
,
r
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCE
);
r
=
SendMessage
(
hWndTrackbar
,
TBM_SETTIC
,
0
,
0
);
ok
(
r
==
FALSE
,
"Expected FALSE, got %d
\n
"
,
r
);
r
=
SendMessage
(
hWndTrackbar
,
TBM_SETTIC
,
0
,
5
);
todo_wine
{
ok
(
r
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
r
);
r
=
SendMessage
(
hWndTrackbar
,
TBM_SETTIC
,
0
,
10
);
ok
(
r
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
r
);
}
ok
(
r
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
r
);
r
=
SendMessage
(
hWndTrackbar
,
TBM_SETTIC
,
0
,
10
);
ok
(
r
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
r
);
r
=
SendMessage
(
hWndTrackbar
,
TBM_SETTIC
,
0
,
20
);
ok
(
r
==
FALSE
,
"Expected False, got %d
\n
"
,
r
);
...
...
dlls/comctl32/trackbar.c
View file @
629eb23a
...
...
@@ -1294,9 +1294,6 @@ TRACKBAR_SetThumbLength (TRACKBAR_INFO *infoPtr, UINT iLength)
static
inline
LRESULT
TRACKBAR_SetTic
(
TRACKBAR_INFO
*
infoPtr
,
LONG
lPos
)
{
if
(
infoPtr
->
dwStyle
&
TBS_AUTOTICKS
)
return
FALSE
;
if
((
lPos
<
infoPtr
->
lRangeMin
)
||
(
lPos
>
infoPtr
->
lRangeMax
))
return
FALSE
;
...
...
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