shell32/autocomplete: Autocompletion should be case insensitive for string comparison.

This commit is contained in:
Nikolay Sivov 2011-07-23 12:40:56 +04:00 committed by Alexandre Julliard
parent 046ec2d132
commit 2210e9bbf0
1 changed files with 1 additions and 1 deletions

View File

@ -589,7 +589,7 @@ static LRESULT APIENTRY ACEditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam,
if (hr != S_OK)
break;
if (strstrW(strs, hwndText) == strs) {
if (StrStrIW(strs, hwndText) == strs) {
if (!filled && (This->options & ACO_AUTOAPPEND)) {
SetWindowTextW(hwnd, strs);
SendMessageW(hwnd, EM_SETSEL, lstrlenW(hwndText), lstrlenW(strs));