Commit 286c6055 authored by Juraj Hercek's avatar Juraj Hercek Committed by Alexandre Julliard

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

parent 00c74e94
......@@ -1140,7 +1140,7 @@ gen_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();
$$->title = new_name_id();
$$->title->type = name_str;
......@@ -1163,12 +1163,12 @@ lab_exctrl
free($12);
}
$$->extra = $13;
$$->extra = $14;
}
;
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();
$$->id = $1;
$$->x = $3;
......@@ -1187,7 +1187,7 @@ exctrl_desc
}
free($10);
}
$$->extra = $11;
$$->extra = $12;
}
;
......
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