[cryptui] Show the select store text when browsing stores

Aurimas Fišeras aurimas at gmail.com
Sun Jul 5 08:41:50 CDT 2009


On 07/05/2009 04:08 PM, Paul Vriens wrote:
> Hi,
> 
> We at least see the text now. Selecting is possible but doesn't work
> (regression?).
> 
> Changelog
>   Show the select store text when browsing stores
> 
> 
> ------------------------------------------------------------------------
> 
> 
> +            selectInfo.pwszText = LoadStringW(hInstance, IDC_STORE_TEXT,
> +             storeText, sizeof(storeText) / sizeof(storeText[0]));
LoadStringW returns int, not string!

LoadStringW(hInstance, IDC_STORE_TEXT, storeText, sizeof(storeText) /
sizeof(storeText[0]));
selectInfo.pwszText = storeText;



More information about the wine-devel mailing list