Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b8f517b0
Commit
b8f517b0
authored
Mar 14, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Add missing '\n's in ok() calls.
parent
76c99d97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
listview.c
dlls/comctl32/tests/listview.c
+4
-4
tab.c
dlls/comctl32/tests/tab.c
+2
-2
No files found.
dlls/comctl32/tests/listview.c
View file @
b8f517b0
...
...
@@ -794,7 +794,7 @@ static void test_icon_spacing(void)
DWORD
r
;
hwnd
=
create_custom_listview_control
(
LVS_ICON
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window"
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -826,7 +826,7 @@ static void test_color(void)
COLORREF
colors
[
4
]
=
{
RGB
(
0
,
0
,
0
),
RGB
(
100
,
50
,
200
),
CLR_NONE
,
RGB
(
255
,
255
,
255
)};
hwnd
=
create_listview_control
();
ok
(
hwnd
!=
NULL
,
"failed to create a listview window"
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -872,7 +872,7 @@ static void test_item_count(void)
static
CHAR
item2text
[]
=
"item2"
;
hwnd
=
create_listview_control
();
ok
(
hwnd
!=
NULL
,
"failed to create a listview window"
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
@@ -962,7 +962,7 @@ static void test_item_position(void)
static
CHAR
item2text
[]
=
"item2"
;
hwnd
=
create_custom_listview_control
(
LVS_ICON
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window"
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
...
...
dlls/comctl32/tests/tab.c
View file @
b8f517b0
...
...
@@ -463,10 +463,10 @@ static void test_getters_setters(INT nTabs)
toolTip
=
create_tooltip
(
hTab
,
toolTipText
);
SendMessage
(
hTab
,
TCM_SETTOOLTIPS
,
(
LPARAM
)
toolTip
,
0
);
ok
(
toolTip
==
(
HWND
)
SendMessage
(
hTab
,
TCM_GETTOOLTIPS
,
0
,
0
),
"ToolTip was set incorrectly."
);
ok
(
toolTip
==
(
HWND
)
SendMessage
(
hTab
,
TCM_GETTOOLTIPS
,
0
,
0
),
"ToolTip was set incorrectly.
\n
"
);
SendMessage
(
hTab
,
TCM_SETTOOLTIPS
,
(
LPARAM
)
NULL
,
0
);
ok
(
NULL
==
(
HWND
)
SendMessage
(
hTab
,
TCM_GETTOOLTIPS
,
0
,
0
),
"ToolTip was set incorrectly."
);
ok
(
NULL
==
(
HWND
)
SendMessage
(
hTab
,
TCM_GETTOOLTIPS
,
0
,
0
),
"ToolTip was set incorrectly.
\n
"
);
}
DestroyWindow
(
hTab
);
...
...
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