Alexandre Julliard a écrit :
> Module: wine
> Branch: master
> Commit: 5cb8bccf462790338677dac3bfb394df8f4da020
> URL:    
> http://source.winehq.org/git/wine.git/?a=commit;h=5cb8bccf462790338677dac3bfb394df8f4da020
>
> Author: Alexander Nicolaysen Sørnes <[EMAIL PROTECTED]>
> Date:   Sun Aug 10 12:43:06 2008 +0200
>
> regedit: Convert printing&help to unicode.
>
> ---
>
>  programs/regedit/framewnd.c |   25 +++++++++++++++++--------
>  1 files changed, 17 insertions(+), 8 deletions(-)
>
> @@ -671,8 +671,11 @@ static BOOL _CmdWndProc(HWND hWnd, UINT message, WPARAM 
> wParam, LPARAM lParam)
>      case ID_REGISTRY_DISCONNECTNETWORKREGISTRY:
>          break;
>      case ID_REGISTRY_PRINT:
> -        PrintRegistryHive(hWnd, _T(""));
> +    {
> +        const WCHAR empty = 0;
> +        PrintRegistryHive(hWnd, empty);
>          break;
> +    }
>   
this looks very wrong to me

-- 
Eric Pouech
"The problem with designing something completely foolproof is to underestimate 
the ingenuity of a complete idiot." (Douglas Adams)




Reply via email to