Fix an uninitialized variable problem.

This commit is contained in:
Mike McCormack 2005-09-12 10:11:23 +00:00 committed by Alexandre Julliard
parent b3084d55e4
commit a9a3bc7b14

View File

@ -994,7 +994,6 @@ static void
msi_maskedit_create_children( struct msi_maskedit_info *info )
{
DWORD width, height, style, wx, ww;
LPCWSTR text, font = NULL;
RECT rect;
HWND hwnd;
UINT i;
@ -1006,9 +1005,6 @@ msi_maskedit_create_children( struct msi_maskedit_info *info )
width = rect.right - rect.left;
height = rect.bottom - rect.top;
if( text )
font = msi_dialog_get_style( &text );
for( i = 0; i < info->num_groups; i++ )
{
wx = (info->group[i].ofs * width) / info->num_chars;
@ -1024,8 +1020,7 @@ msi_maskedit_create_children( struct msi_maskedit_info *info )
SendMessageW( hwnd, EM_LIMITTEXT, info->group[i].len, 0 );
msi_dialog_set_font( info->dialog, hwnd,
font ? font : info->dialog->default_font );
msi_dialog_set_font( info->dialog, hwnd, info->dialog->default_font );
info->group[i].hwnd = hwnd;
}
}