From 73b490b57da520d4cfd1aeb41d54fbea8c33c32c Mon Sep 17 00:00:00 2001 From: Igor Tarasov Date: Thu, 19 Feb 2009 07:01:21 +0400 Subject: [PATCH] comctl32: Make LISTVIEW_ProcessLetterKeys accept Unicode characters. --- dlls/comctl32/listview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index b8545fda2c6..6b897663504 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -1530,7 +1530,7 @@ static INT LISTVIEW_ProcessLetterKeys(LISTVIEW_INFO *infoPtr, WPARAM charCode, L if (!charCode || !keyData) return 0; /* only allow the valid WM_CHARs through */ - if (!isalnum(charCode) && + if (!isalnumW(charCode) && charCode != '.' && charCode != '`' && charCode != '!' && charCode != '@' && charCode != '#' && charCode != '$' && charCode != '%' && charCode != '^' && charCode != '&' &&