mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
[User32]
- Fix regression in API:RealGetWindowClass test due to wine sync/port. - ReactOS use of DIALOG_get_info is an enhanced fork of the same wine function. svn path=/trunk/; revision=71915
This commit is contained in:
parent
5c7bfe2f11
commit
edd88125ab
1 changed files with 2 additions and 2 deletions
|
@ -1678,7 +1678,7 @@ DefDlgProcA(
|
|||
BOOL result = FALSE;
|
||||
|
||||
/* Perform DIALOGINFO initialization if not done */
|
||||
if(!(dlgInfo = DIALOG_get_info( hDlg, Msg == WM_NCCREATE ))) return 0;
|
||||
if(!(dlgInfo = DIALOG_get_info( hDlg, TRUE ))) return 0; //// REACTOS : Always TRUE! See RealGetWindowClass.
|
||||
|
||||
SetWindowLongPtrW( hDlg, DWLP_MSGRESULT, 0 );
|
||||
|
||||
|
@ -1738,7 +1738,7 @@ DefDlgProcW(
|
|||
BOOL result = FALSE;
|
||||
|
||||
/* Perform DIALOGINFO initialization if not done */
|
||||
if(!(dlgInfo = DIALOG_get_info( hDlg, Msg == WM_NCCREATE ))) return 0;
|
||||
if(!(dlgInfo = DIALOG_get_info( hDlg, TRUE ))) return 0; //// REACTOS : Always TRUE! See RealGetWindowClass.
|
||||
|
||||
SetWindowLongPtrW( hDlg, DWLP_MSGRESULT, 0 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue