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
f9975b00
Commit
f9975b00
authored
Feb 15, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Add missing '\n's to ok() calls.
parent
78e50b78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
trackbar.c
dlls/comctl32/tests/trackbar.c
+5
-5
No files found.
dlls/comctl32/tests/trackbar.c
View file @
f9975b00
...
...
@@ -46,7 +46,7 @@ static void test_trackbar_control(void)
hWndTrackbar
=
create_trackbar
(
style
);
ok
(
hWndTrackbar
!=
NULL
,
"Expected non NULL value"
);
ok
(
hWndTrackbar
!=
NULL
,
"Expected non NULL value
\n
"
);
if
(
hWndTrackbar
==
NULL
){
skip
(
"trackbar control not present?
\n
"
);
...
...
@@ -58,7 +58,7 @@ static void test_trackbar_control(void)
/* test TBM_SETBUDDY */
hWndLeftBuddy
=
(
HWND
)
CreateWindowEx
(
0
,
STATUSCLASSNAME
,
NULL
,
0
,
0
,
0
,
300
,
20
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
hWndLeftBuddy
!=
NULL
,
"Expected non NULL value"
);
ok
(
hWndLeftBuddy
!=
NULL
,
"Expected non NULL value
\n
"
);
if
(
hWndLeftBuddy
!=
NULL
){
hWndCurrentBuddy
=
(
HWND
)
SendMessage
(
hWndTrackbar
,
TBM_GETBUDDY
,
TRUE
,
0
);
...
...
@@ -72,7 +72,7 @@ static void test_trackbar_control(void)
hWndRightBuddy
=
(
HWND
)
CreateWindowEx
(
0
,
STATUSCLASSNAME
,
NULL
,
0
,
0
,
0
,
300
,
20
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
hWndRightBuddy
!=
NULL
,
"expected non NULL value"
);
ok
(
hWndRightBuddy
!=
NULL
,
"expected non NULL value
\n
"
);
if
(
hWndRightBuddy
!=
NULL
){
hWndCurrentBuddy
=
(
HWND
)
SendMessage
(
hWndTrackbar
,
TBM_GETBUDDY
,
TRUE
,
0
);
...
...
@@ -335,7 +335,7 @@ static void test_trackbar_control(void)
if
(
hWndTooltip
!=
NULL
){
SendMessage
(
hWndTrackbar
,
TBM_SETTOOLTIPS
,
(
LPARAM
)
hWndTooltip
,
0
);
rTest
=
(
HWND
)
SendMessage
(
hWndTrackbar
,
TBM_GETTOOLTIPS
,
0
,
0
);
ok
(
rTest
==
hWndTooltip
,
"Expected hWndToolTip, got
\n
"
);
ok
(
rTest
==
hWndTooltip
,
"Expected hWndToolTip, got
\n
"
);
SendMessage
(
hWndTrackbar
,
TBM_SETTOOLTIPS
,
(
LPARAM
)
NULL
,
0
);
rTest
=
(
HWND
)
SendMessage
(
hWndTrackbar
,
TBM_GETTOOLTIPS
,
0
,
0
);
ok
(
rTest
==
NULL
,
"Expected NULL
\n
"
);
...
...
@@ -364,7 +364,7 @@ static void test_trackbar_control(void)
/* test getters and setters without styles set */
hWndTrackbar
=
create_trackbar
(
0
);
ok
(
hWndTrackbar
!=
NULL
,
"Expected non NULL value"
);
ok
(
hWndTrackbar
!=
NULL
,
"Expected non NULL value
\n
"
);
if
(
hWndTrackbar
==
NULL
){
skip
(
"trackbar control not present?
\n
"
);
...
...
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