* option.c (init_configure): Use OTHER_OPTIONS consistently.

By Mike Smithson <dooligan@intergate.ca>.
This commit is contained in:
Andrew V. Samoilov 2003-02-19 10:50:24 +00:00
parent 004ae18d9e
commit 1a3f1416a8
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-19 Andrew V. Samoilov <sav@bcs.zp.ua>
* option.c (init_configure): Use OTHER_OPTIONS consistently.
By Mike Smithson <dooligan@intergate.ca>.
2003-02-18 Pavel Roskin <proski@gnu.org>
* util.c (list_append_unique): Free removed links.

View File

@ -229,7 +229,8 @@ init_configure (void)
/* Add checkboxes for "panel options" */
for (i = 0; i < PANEL_OPTIONS; i++) {
check_options[i + OTHER_OPTIONS].widget =
check_new (PY + (6 - i), PX + 2, XTRACT (i + OTHER_OPTIONS));
check_new (PY + (PANEL_OPTIONS - i), PX + 2,
XTRACT (i + OTHER_OPTIONS));
add_widget (conf_dlg, check_options[i + OTHER_OPTIONS].widget);
}
}