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
28b2d03a
Commit
28b2d03a
authored
Jul 31, 2011
by
Dan Kegel
Committed by
Alexandre Julliard
Aug 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20/tests: Fix test_EM_FINDWORDBREAK comments.
parent
f01c1c42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
editor.c
dlls/riched20/tests/editor.c
+8
-8
No files found.
dlls/riched20/tests/editor.c
View file @
28b2d03a
...
...
@@ -7054,11 +7054,11 @@ static void test_EM_FINDWORDBREAK_W(void)
BOOL
isdelimiter
;
/* expected result of WB_ISDELIMITER */
}
delimiter_tests
[]
=
{
{
0x0a
,
FALSE
},
/* newline */
{
0x0b
,
FALSE
},
/* vertical tab
mark
*/
{
0x0b
,
FALSE
},
/* vertical tab */
{
0x0c
,
FALSE
},
/* form feed */
{
0x0d
,
FALSE
},
/* carriage return */
{
0x20
,
TRUE
},
/*
ANSI S
pace */
{
0x61
,
FALSE
},
/*
ASCII
capital letter a */
{
0x20
,
TRUE
},
/*
s
pace */
{
0x61
,
FALSE
},
/* capital letter a */
{
0xa0
,
FALSE
},
/* no-break space */
{
0x2000
,
FALSE
},
/* en quad */
{
0x3000
,
FALSE
},
/* Ideographic space */
...
...
@@ -7067,8 +7067,8 @@ static void test_EM_FINDWORDBREAK_W(void)
{
0x115f
,
FALSE
},
/* Hangul Choseong Filler (no sound, used with two letter Hangul words) Ordinary Letter */
{
0xac00
,
FALSE
},
/* Hangul character GA*/
{
0xd7af
,
FALSE
},
/* End of Hangul character chart */
{
0xf020
,
TRUE
},
/*
High Surrogate Space
*/
{
0xff20
,
FALSE
},
/*
MS private for CP_SYMBOL round trip?
*/
{
0xf020
,
TRUE
},
/*
MS private for CP_SYMBOL round trip?, see kb897872
*/
{
0xff20
,
FALSE
},
/*
fullwidth commercial @
*/
{
WCH_EMBEDDING
,
FALSE
},
/* object replacement character*/
};
int
i
;
...
...
@@ -7103,11 +7103,11 @@ static void test_EM_FINDWORDBREAK_A(void)
BOOL
isdelimiter
;
/* expected result of WB_ISDELIMITER */
}
delimiter_tests
[]
=
{
{
0x0a
,
FALSE
},
/* newline */
{
0x0b
,
FALSE
},
/* vertical tab
mark
*/
{
0x0b
,
FALSE
},
/* vertical tab */
{
0x0c
,
FALSE
},
/* form feed */
{
0x0d
,
FALSE
},
/* carriage return */
{
0x20
,
TRUE
},
/*
ANSI S
pace */
{
0x61
,
FALSE
},
/*
ASCII
capital letter a */
{
0x20
,
TRUE
},
/*
s
pace */
{
0x61
,
FALSE
},
/* capital letter a */
};
int
i
;
HWND
hwndRichEdit
=
new_richedit
(
NULL
);
...
...
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