Remove trailing spaces

This commit is contained in:
Anton Afanasyev 2020-09-05 09:14:20 -07:00
parent ea3bb68e2a
commit d30e07f497
3 changed files with 3 additions and 3 deletions

View File

@ -28309,7 +28309,7 @@ nk_combo_begin_text(struct nk_context *ctx, const char *selected, int len,
sym = style->combo.sym_hover; sym = style->combo.sym_hover;
else if (is_clicked) else if (is_clicked)
sym = style->combo.sym_active; sym = style->combo.sym_active;
else else
sym = style->combo.sym_normal; sym = style->combo.sym_normal;
/* represents whether or not the combo's button symbol should be drawn */ /* represents whether or not the combo's button symbol should be drawn */

View File

@ -9,7 +9,7 @@ def print_help():
"""usage: python single_header_packer.py --macro <macro> [--intro <files>] --extern <files> --pub <files> --priv1 <files> --priv2 <files> [--outro <files>] """usage: python single_header_packer.py --macro <macro> [--intro <files>] --extern <files> --pub <files> --priv1 <files> --priv2 <files> [--outro <files>]
where <files> can be a comma-separated list of files. e.g. --priv *.c,inc/*.h where <files> can be a comma-separated list of files. e.g. --priv *.c,inc/*.h
The 'extern' files are placed between 'priv1' and 'priv2'. The 'extern' files are placed between 'priv1' and 'priv2'.
The resulting code is packed as follows: The resulting code is packed as follows:

View File

@ -102,7 +102,7 @@ nk_combo_begin_text(struct nk_context *ctx, const char *selected, int len,
sym = style->combo.sym_hover; sym = style->combo.sym_hover;
else if (is_clicked) else if (is_clicked)
sym = style->combo.sym_active; sym = style->combo.sym_active;
else else
sym = style->combo.sym_normal; sym = style->combo.sym_normal;
/* represents whether or not the combo's button symbol should be drawn */ /* represents whether or not the combo's button symbol should be drawn */