diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-21 19:36:05 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-21 19:36:05 +0000 |
commit | 1aeb990b41469da5703c794b72843bf2eb38707f (patch) | |
tree | a773af5431f896a1f2c9855ba4fcdaba26d7c84e /src/help.c | |
parent | d069415d0da5870cecc8bbdb4974a2a7f5512ad4 (diff) | |
download | calcurse-1aeb990b41469da5703c794b72843bf2eb38707f.zip |
call to wins_show() updated
Diffstat (limited to 'src/help.c')
-rwxr-xr-x | src/help.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: help.c,v 1.16 2007/04/04 19:38:18 culot Exp $ */ +/* $calcurse: help.c,v 1.17 2007/07/21 19:36:05 culot Exp $ */ /* * Calcurse - text-based organizer @@ -39,6 +39,7 @@ #include "utils.h" #include "apoint.h" #include "notify.h" +#include "wins.h" /* * Write the desired help text inside the help pad, and return the number @@ -368,7 +369,7 @@ help_screen(int which_pan) help_pad = newpad(BUFSIZ, pad_width); box(help_win, 0, 0); snprintf(label, BUFSIZ, _("CalCurse %s | help"), VERSION); - win_show(help_win, label); + wins_show(help_win, label); /* Display the help screen related to user input. */ while ( ch != 'q' ) { |