mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
bugfixes by Thomas Weidenmueller
svn path=/trunk/; revision=5280
This commit is contained in:
parent
ae73363a39
commit
6408c767ef
1 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: dialog.c,v 1.10 2003/07/26 14:55:35 rcampbell Exp $
|
||||
/* $Id: dialog.c,v 1.11 2003/07/26 18:38:52 rcampbell Exp $
|
||||
*
|
||||
* PROJECT: ReactOS user32.dll
|
||||
* FILE: lib/user32/windows/input.c
|
||||
|
@ -1151,7 +1151,7 @@ CreateDialogIndirectParamA(
|
|||
DLGPROC lpDialogFunc,
|
||||
LPARAM lParamInit)
|
||||
{
|
||||
return CreateDialogIndirectParamA( hInstance, lpTemplate, hWndParent, lpDialogFunc, lParamInit );
|
||||
return DIALOG_CreateIndirect( hInstance, lpTemplate, hWndParent, lpDialogFunc, lParamInit, FALSE, FALSE );
|
||||
}
|
||||
|
||||
|
||||
|
@ -1188,7 +1188,7 @@ CreateDialogIndirectParamW(
|
|||
DLGPROC lpDialogFunc,
|
||||
LPARAM lParamInit)
|
||||
{
|
||||
return CreateDialogIndirectParamW( hInstance, lpTemplate, hWndParent, lpDialogFunc, lParamInit );
|
||||
return DIALOG_CreateIndirect( hInstance, lpTemplate, hWndParent, lpDialogFunc, lParamInit, TRUE, FALSE );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue