summaryrefslogtreecommitdiff
path: root/misc/buildroot/package/config/lxdialog/checklist.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 17:54:59 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 17:54:59 -0600
commit72a9bdf3ac545e09de89671a5db3a4b6c19d1e1e (patch)
tree08d8934927e29f006cec36485d0ed9a53aea6d9e /misc/buildroot/package/config/lxdialog/checklist.c
parent1a552bd8cdbbd50f26a785a1f74b94b29a3be2f6 (diff)
downloadnuttx-72a9bdf3ac545e09de89671a5db3a4b6c19d1e1e.tar.gz
nuttx-72a9bdf3ac545e09de89671a5db3a4b6c19d1e1e.tar.bz2
nuttx-72a9bdf3ac545e09de89671a5db3a4b6c19d1e1e.zip
Removing more trailing whitespace
Diffstat (limited to 'misc/buildroot/package/config/lxdialog/checklist.c')
-rw-r--r--misc/buildroot/package/config/lxdialog/checklist.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/buildroot/package/config/lxdialog/checklist.c b/misc/buildroot/package/config/lxdialog/checklist.c
index 71de4a191..484d87f3b 100644
--- a/misc/buildroot/package/config/lxdialog/checklist.c
+++ b/misc/buildroot/package/config/lxdialog/checklist.c
@@ -197,7 +197,7 @@ dialog_checklist (const char *title, const char *prompt, int height, int width,
/* Find length of longest item in order to center checklist */
check_x = 0;
- for (i = 0; i < item_no; i++)
+ for (i = 0; i < item_no; i++)
check_x = MAX (check_x, + strlen (items[i]->name) + 4);
check_x = (list_width - check_x) / 2;
@@ -231,7 +231,7 @@ dialog_checklist (const char *title, const char *prompt, int height, int width,
break;
- if ( i < max_choice || key == KEY_UP || key == KEY_DOWN ||
+ if ( i < max_choice || key == KEY_UP || key == KEY_DOWN ||
key == '+' || key == '-' ) {
if (key == KEY_UP || key == '-') {
if (!choice) {
@@ -342,7 +342,7 @@ dialog_checklist (const char *title, const char *prompt, int height, int width,
}
wnoutrefresh (list);
wrefresh (dialog);
-
+
for (i = 0; i < item_no; i++) {
items[i]->selected = status[i];
}
@@ -364,7 +364,7 @@ dialog_checklist (const char *title, const char *prompt, int height, int width,
/* Now, update everything... */
doupdate ();
}
-
+
delwin (dialog);
free (status);