aboutsummaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-07-21 19:36:05 +0000
committerFrederic Culot <calcurse@culot.org>2007-07-21 19:36:05 +0000
commit1aeb990b41469da5703c794b72843bf2eb38707f (patch)
treea773af5431f896a1f2c9855ba4fcdaba26d7c84e /src/help.c
parentd069415d0da5870cecc8bbdb4974a2a7f5512ad4 (diff)
downloadcalcurse-1aeb990b41469da5703c794b72843bf2eb38707f.tar.gz
calcurse-1aeb990b41469da5703c794b72843bf2eb38707f.zip
call to wins_show() updated
Diffstat (limited to 'src/help.c')
-rwxr-xr-xsrc/help.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/help.c b/src/help.c
index e7bc8d5..06861de 100755
--- a/src/help.c
+++ b/src/help.c
@@ -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' ) {