Handle the ^ character in MaskEdit controls.

oldstable
Mike McCormack 2005-11-28 10:36:54 +01:00 committed by Alexandre Julliard
parent c329e17ba4
commit 6a976373b3
1 changed files with 2 additions and 0 deletions

View File

@ -939,6 +939,7 @@ static BOOL msi_mask_editable( WCHAR type )
case '&':
case '`':
case '?':
case '^':
return TRUE;
}
return FALSE;
@ -1156,6 +1157,7 @@ msi_maskedit_create_children( struct msi_maskedit_info *info, LPCWSTR font )
/*
* office 2003 uses "73931<````=````=````=````=`````>@@@@@"
* delphi 7 uses "<????-??????-??????-????>" and "<???-???>"
* filemaker pro 7 uses "<^^^^=^^^^=^^^^=^^^^=^^^^=^^^^=^^^^^>"
*/
static UINT msi_dialog_maskedit_control( msi_dialog *dialog, MSIRECORD *rec )
{