diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-17 10:00:48 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-17 10:00:48 +0000 |
commit | 2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f (patch) | |
tree | d48b8f5f4c81e26e8dbb6597554286f1d6d53d3a /help.c | |
parent | a94245b3d36b447d1f761028da7e072210e64b43 (diff) | |
download | FreeBSD-src-2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f.zip FreeBSD-src-2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f.tar.gz |
Update dialog to 1.2-20130523
Diffstat (limited to 'help.c')
-rw-r--r-- | help.c | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -1,9 +1,9 @@ /* - * $Id: help.c,v 1.2 2011/06/25 00:27:16 tom Exp $ + * $Id: help.c,v 1.3 2012/12/04 02:01:10 tom Exp $ * * help.c -- implements the help dialog * - * Copyright 2011 Thomas E. Dickey + * Copyright 2011,2012 Thomas E. Dickey * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License, version 2.1 @@ -33,11 +33,22 @@ dialog_helpfile(const char *title, int width) { int result = DLG_EXIT_ERROR; + DIALOG_VARS save; if (!dialog_vars.in_helpfile && file != 0 && *file != '\0') { + dlg_save_vars(&save); + + dialog_vars.no_label = NULL; + dialog_vars.ok_label = NULL; + dialog_vars.help_button = FALSE; + dialog_vars.extra_button = FALSE; + dialog_vars.nook = FALSE; + dialog_vars.in_helpfile = TRUE; + result = dialog_textbox(title, file, height, width); - dialog_vars.in_helpfile = FALSE; + + dlg_restore_vars(&save); } return (result); } |