[PATCH 2/3] comctl32/propsheet: Implement PSM_SETHEADERTITLE

Alexandre Julliard julliard at winehq.org
Thu Feb 16 12:06:50 CST 2017


Nikolay Sivov <nsivov at codeweavers.com> writes:

>      case PSM_SETHEADERTITLEW:
> -        PROPSHEET_SetHeaderTitleW(hwnd, (int)wParam, (LPCWSTR)lParam);
> -        return TRUE;
> +        PROPSHEET_SetHeaderTitleW(hwnd, wParam, (LPCWSTR)lParam);
> +        return FALSE;
>  
>      case PSM_SETHEADERTITLEA:
> -        PROPSHEET_SetHeaderTitleA(hwnd, (int)wParam, (LPCSTR)lParam);
> -        return TRUE;
> +        PROPSHEET_SetHeaderTitleA(hwnd, wParam, (LPCSTR)lParam);
> +        return FALSE;

Not that it makes much difference, but is there a reason for changing
these to returning FALSE?

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list