mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
put variables at top to eliminate build error in DIALOG_CreateControls32
svn path=/trunk/; revision=5283
This commit is contained in:
parent
a432924599
commit
a79eb7852c
1 changed files with 3 additions and 2 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.11 2003/07/26 18:38:52 rcampbell Exp $
|
||||
/* $Id: dialog.c,v 1.12 2003/07/26 23:12:08 royce Exp $
|
||||
*
|
||||
* PROJECT: ReactOS user32.dll
|
||||
* FILE: lib/user32/windows/input.c
|
||||
|
@ -278,11 +278,12 @@ static BOOL DIALOG_CreateControls32( HWND hwnd, LPCSTR template, const DLG_TEMPL
|
|||
HINSTANCE hInst, BOOL unicode )
|
||||
{
|
||||
DIALOGINFO * dlgInfo;
|
||||
if (!(dlgInfo = GETDLGINFO(hwnd))) return -1;
|
||||
DLG_CONTROL_INFO info;
|
||||
HWND hwndCtrl, hwndDefButton = 0;
|
||||
INT items = dlgTemplate->nbItems;
|
||||
|
||||
if (!(dlgInfo = GETDLGINFO(hwnd))) return -1;
|
||||
|
||||
while (items--)
|
||||
{
|
||||
template = (LPCSTR)DIALOG_GetControl32( (WORD *)template, &info,
|
||||
|
|
Loading…
Reference in a new issue