From ee57a98589000f1592ffcb9fda602eb1fed98aac Mon Sep 17 00:00:00 2001 From: Waldir Leoncio Date: Wed, 20 May 2020 13:08:57 +0200 Subject: [PATCH] Allowing for empty title --- R/questdlg.R | 2 +- man/questdlg.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/questdlg.R b/R/questdlg.R index 9f7e1aa..826f6b8 100644 --- a/R/questdlg.R +++ b/R/questdlg.R @@ -9,7 +9,7 @@ #' @export questdlg <- function( quest, - dlgtitle, + dlgtitle = "", btn = c('y', 'n'), defbtn = 'n', accepted_ans = c('y', 'yes', 'n', 'no') diff --git a/man/questdlg.Rd b/man/questdlg.Rd index be00b5a..e4f5fa9 100644 --- a/man/questdlg.Rd +++ b/man/questdlg.Rd @@ -6,7 +6,7 @@ \usage{ questdlg( quest, - dlgtitle, + dlgtitle = "", btn = c("y", "n"), defbtn = "n", accepted_ans = c("y", "yes", "n", "no")