diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2012-02-11 15:15:34 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2012-02-11 15:15:34 +0000 |
commit | 7afcdbb2bf95b8bb7e139185b7e53df94aa45a99 (patch) | |
tree | 32a15f883dbd0b30eb6b2a2da4f13160a4068f04 /binutils/resrc.c | |
parent | fd08dafa6554542f0a48eb3bb16c818a42015c7a (diff) | |
download | gdb-7afcdbb2bf95b8bb7e139185b7e53df94aa45a99.zip gdb-7afcdbb2bf95b8bb7e139185b7e53df94aa45a99.tar.gz gdb-7afcdbb2bf95b8bb7e139185b7e53df94aa45a99.tar.bz2 |
PR binutils/13297
* resrc.c (write_rc_dialog_control): Omit text dump for
EDITTEXT, COMBOBOX, LISTBOX, and SCROLLBAR.
Diffstat (limited to 'binutils/resrc.c')
-rw-r--r-- | binutils/resrc.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/binutils/resrc.c b/binutils/resrc.c index 702d2f1..9d1abbc 100644 --- a/binutils/resrc.c +++ b/binutils/resrc.c @@ -2650,7 +2650,13 @@ write_rc_dialog_control (FILE *e, const rc_dialog_control *control) ci = NULL; } - if (control->text.named || control->text.u.id != 0) + /* For EDITTEXT, COMBOBOX, LISTBOX, and SCROLLBAR don't dump text. */ + if ((control->text.named || control->text.u.id != 0) + && (!ci + || (ci->class != CTL_EDIT + && ci->class != CTL_COMBOBOX + && ci->class != CTL_LISTBOX + && ci->class != CTL_SCROLLBAR))) { fprintf (e, " "); res_id_print (e, control->text, 1); |