Fix typo in BEDIT warning.
This commit is contained in:
parent
df3baf66cb
commit
c80b2f7704
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
* rcparse.y: CLASS definitions in DIALOG resources
|
* rcparse.y: CLASS definitions in DIALOG resources
|
||||||
are quoted.
|
are quoted.
|
||||||
|
Fix typo in BEDIT warning
|
||||||
|
|
||||||
2002-04-09 Gunnar Degnbol <degnbol@danbbs.dk>
|
2002-04-09 Gunnar Degnbol <degnbol@danbbs.dk>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
%{ /* rcparse.y -- parser for Windows rc files
|
%{ /* rcparse.y -- parser for Windows rc files
|
||||||
Copyright 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
Copyright 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||||
Written by Ian Lance Taylor, Cygnus Support.
|
Written by Ian Lance Taylor, Cygnus Support.
|
||||||
|
|
||||||
This file is part of GNU Binutils.
|
This file is part of GNU Binutils.
|
||||||
@ -519,7 +519,7 @@ control:
|
|||||||
{
|
{
|
||||||
$$ = $3;
|
$$ = $3;
|
||||||
if (dialog.ex == NULL)
|
if (dialog.ex == NULL)
|
||||||
rcparse_warning (_("IEDIT requires DIALOGEX"));
|
rcparse_warning (_("BEDIT requires DIALOGEX"));
|
||||||
res_string_to_id (&$$->class, "BEDIT");
|
res_string_to_id (&$$->class, "BEDIT");
|
||||||
}
|
}
|
||||||
| CHECKBOX
|
| CHECKBOX
|
||||||
@ -573,7 +573,7 @@ control:
|
|||||||
$$->data = $12;
|
$$->data = $12;
|
||||||
}
|
}
|
||||||
$$->class.named = 1;
|
$$->class.named = 1;
|
||||||
unicode_from_ascii(&$$->class.u.n.length, &$$->class.u.n.name, $5);
|
unicode_from_ascii (&$$->class.u.n.length, &$$->class.u.n.name, $5);
|
||||||
}
|
}
|
||||||
| CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
|
| CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
|
||||||
cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
|
cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
|
||||||
@ -584,7 +584,7 @@ control:
|
|||||||
$$->help = $12;
|
$$->help = $12;
|
||||||
$$->data = $13;
|
$$->data = $13;
|
||||||
$$->class.named = 1;
|
$$->class.named = 1;
|
||||||
unicode_from_ascii(&$$->class.u.n.length, &$$->class.u.n.name, $5);
|
unicode_from_ascii (&$$->class.u.n.length, &$$->class.u.n.name, $5);
|
||||||
}
|
}
|
||||||
| CTEXT
|
| CTEXT
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user