Commit 6a976373 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Handle the ^ character in MaskEdit controls.

parent c329e17b
......@@ -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 )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment