Adjusted grammar to accept also help-ids for dialogex controls.

This commit is contained in:
Juraj Hercek 2003-07-09 21:55:45 +00:00 committed by Alexandre Julliard
parent 00c74e940d
commit 286c605583
1 changed files with 4 additions and 4 deletions

View File

@ -1140,7 +1140,7 @@ gen_exctrl
; ;
lab_exctrl lab_exctrl
: tSTRING opt_comma expr ',' expr ',' expr ',' expr ',' expr optional_style_pair opt_data { : tSTRING opt_comma expr ',' expr ',' expr ',' expr ',' expr optional_style_pair helpid opt_data {
$$=new_control(); $$=new_control();
$$->title = new_name_id(); $$->title = new_name_id();
$$->title->type = name_str; $$->title->type = name_str;
@ -1163,12 +1163,12 @@ lab_exctrl
free($12); free($12);
} }
$$->extra = $13; $$->extra = $14;
} }
; ;
exctrl_desc exctrl_desc
: expr ',' expr ',' expr ',' expr ',' expr optional_style_pair opt_data { : expr ',' expr ',' expr ',' expr ',' expr optional_style_pair helpid opt_data {
$$ = new_control(); $$ = new_control();
$$->id = $1; $$->id = $1;
$$->x = $3; $$->x = $3;
@ -1187,7 +1187,7 @@ exctrl_desc
} }
free($10); free($10);
} }
$$->extra = $11; $$->extra = $12;
} }
; ;