conf_set_scrsize not static any more (moved to custom_set_swsiz)

This commit is contained in:
Frederic Culot 2009-08-02 09:29:24 +00:00
parent b44dd7c10d
commit d6b7f83e58
2 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $calcurse: custom.c,v 1.43 2009/08/01 17:44:51 culot Exp $ */ /* $calcurse: custom.c,v 1.44 2009/08/02 09:29:24 culot Exp $ */
/* /*
* Calcurse - text-based organizer * Calcurse - text-based organizer
@ -979,8 +979,8 @@ print_general_options (WINDOW *win, conf_t *conf)
return y + YOFF; return y + YOFF;
} }
static void void
conf_set_scrsize (scrollwin_t *sw) custom_set_swsiz (scrollwin_t *sw)
{ {
sw->win.x = 0; sw->win.x = 0;
sw->win.y = 0; sw->win.y = 0;
@ -1013,7 +1013,7 @@ custom_general_config (conf_t *conf)
char *buf; char *buf;
clear (); clear ();
conf_set_scrsize (&cwin); custom_set_swsiz (&cwin);
(void)snprintf (cwin.label, BUFSIZ, _("general options")); (void)snprintf (cwin.label, BUFSIZ, _("general options"));
wins_scrollwin_init (&cwin); wins_scrollwin_init (&cwin);
wins_show (cwin.win.p, cwin.label); wins_show (cwin.win.p, cwin.label);
@ -1033,7 +1033,7 @@ custom_general_config (conf_t *conf)
wins_reset (); wins_reset ();
wins_scrollwin_delete (&cwin); wins_scrollwin_delete (&cwin);
wins_scrollwin_init (&cwin); wins_scrollwin_init (&cwin);
conf_set_scrsize (&cwin); custom_set_swsiz (&cwin);
wins_show (cwin.win.p, cwin.label); wins_show (cwin.win.p, cwin.label);
cwin.first_visible_line = 0; cwin.first_visible_line = 0;
delwin (win[STA].p); delwin (win[STA].p);
@ -1211,7 +1211,7 @@ custom_keys_config (void)
const int LABELLINES = 3; const int LABELLINES = 3;
clear (); clear ();
conf_set_scrsize (&kwin); custom_set_swsiz (&kwin);
nbdisplayed = (kwin.win.h - LABELLINES) / LINESPERKEY; nbdisplayed = (kwin.win.h - LABELLINES) / LINESPERKEY;
(void)snprintf (kwin.label, BUFSIZ, _("keys configuration")); (void)snprintf (kwin.label, BUFSIZ, _("keys configuration"));
wins_scrollwin_init (&kwin); wins_scrollwin_init (&kwin);

View File

@ -1,4 +1,4 @@
/* $calcurse: custom.h,v 1.17 2009/08/01 17:44:51 culot Exp $ */ /* $calcurse: custom.h,v 1.18 2009/08/02 09:29:24 culot Exp $ */
/* /*
* Calcurse - text-based organizer * Calcurse - text-based organizer
@ -96,6 +96,7 @@ void custom_layout_config (void);
void custom_color_config (void); void custom_color_config (void);
void custom_color_theme_name (char *); void custom_color_theme_name (char *);
void custom_confwin_init (window_t *, char *); void custom_confwin_init (window_t *, char *);
void custom_set_swsiz (scrollwin_t *);
void custom_general_config (conf_t *); void custom_general_config (conf_t *);
void custom_keys_config (void); void custom_keys_config (void);