which_pan dependency suppressed in help_screen()

This commit is contained in:
Frederic Culot 2007-07-23 19:29:34 +00:00
parent 5cc85f48ab
commit 6b10eb3623
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $calcurse: help.c,v 1.17 2007/07/21 19:36:05 culot Exp $ */ /* $calcurse: help.c,v 1.18 2007/07/23 19:29:34 culot Exp $ */
/* /*
* Calcurse - text-based organizer * Calcurse - text-based organizer
@ -75,7 +75,7 @@ get_help_lines(char *text)
/* Draws the help screen */ /* Draws the help screen */
void void
help_screen(int which_pan) help_screen(void)
{ {
WINDOW *help_win = NULL; WINDOW *help_win = NULL;
WINDOW *help_pad = NULL; WINDOW *help_pad = NULL;

View File

@ -1,4 +1,4 @@
/* $calcurse: help.h,v 1.2 2007/03/10 15:55:25 culot Exp $ */ /* $calcurse: help.h,v 1.3 2007/07/23 19:29:34 culot Exp $ */
/* /*
* Calcurse - text-based organizer * Calcurse - text-based organizer
@ -34,8 +34,8 @@ typedef struct {
char *text; char *text;
} help_page_t; } help_page_t;
int write_help_pad(WINDOW *win, char *title, char *text, int pad_width); int write_help_pad(WINDOW *, char *, char *, int);
int get_help_lines(char *text); int get_help_lines(char *);
void help_screen(int which_pan); void help_screen(void);
#endif /* CALCURSE_HELP_H */ #endif /* CALCURSE_HELP_H */