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
c26971c6
Commit
c26971c6
authored
Sep 22, 2004
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Sep 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup W->A transition.
parent
76e00d62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
string.c
dlls/comctl32/string.c
+11
-1
No files found.
dlls/comctl32/string.c
View file @
c26971c6
...
...
@@ -131,6 +131,16 @@ static BOOL COMCTL32_ChrCmpW(WCHAR ch1, WCHAR ch2)
return
COMCTL32_ChrCmpHelperW
(
ch1
,
ch2
,
0
);
}
/*************************************************************************
* COMCTL32_ChrCmpIW
*
* Internal helper function.
*/
static
BOOL
COMCTL32_ChrCmpIW
(
WCHAR
ch1
,
WCHAR
ch2
)
{
return
COMCTL32_ChrCmpHelperW
(
ch1
,
ch2
,
NORM_IGNORECASE
);
}
/**************************************************************************
* StrChrA [COMCTL32.350]
*
...
...
@@ -627,7 +637,7 @@ LPWSTR WINAPI StrRStrIW(LPCWSTR lpszStr, LPCWSTR lpszEnd, LPCWSTR lpszSearch)
while
(
lpszStr
<=
lpszEnd
&&
*
lpszStr
)
{
if
(
!
COMCTL32_ChrCmpI
A
(
*
lpszSearch
,
*
lpszStr
))
if
(
!
COMCTL32_ChrCmpI
W
(
*
lpszSearch
,
*
lpszStr
))
{
if
(
!
StrCmpNIW
(
lpszStr
,
lpszSearch
,
iLen
))
lpszRet
=
(
LPWSTR
)
lpszStr
;
...
...
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