credui: Use SetRectEmpty() instead of memset().
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
986a14f950
commit
dc0a49f3bb
|
@ -216,7 +216,7 @@ static void CredDialogCreateBalloonTip(HWND hwndDlg, struct cred_dialog_params *
|
|||
toolinfo.uFlags = TTF_TRACK;
|
||||
toolinfo.hwnd = hwndDlg;
|
||||
toolinfo.uId = TOOLID_INCORRECTPASSWORD;
|
||||
memset(&toolinfo.rect, 0, sizeof(toolinfo.rect));
|
||||
SetRectEmpty(&toolinfo.rect);
|
||||
toolinfo.hinst = NULL;
|
||||
toolinfo.lpszText = wszText;
|
||||
toolinfo.lParam = 0;
|
||||
|
|
Loading…
Reference in New Issue