X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Falert.h;h=c3b8065f98723e2ea3c911d9daaad7af802fd481;hb=38c2cde0d8695ac5287bae218c4a33a2acf18ef8;hp=2be612acea3c0dade24081cee666dbf411a1bb2f;hpb=38d387d1ab6c1ed11d845996de768433feb18f20;p=lyx.git diff --git a/src/frontends/alert.h b/src/frontends/alert.h index 2be612acea..c3b8065f98 100644 --- a/src/frontends/alert.h +++ b/src/frontends/alert.h @@ -20,7 +20,7 @@ namespace frontend { namespace Alert { /** - * Prompt for a question. Returns 0-2 for the chosen button. + * Prompt for a question. Returns 0-3 for the chosen button. * Set default_button and cancel_button to reasonable values. b1-b3 * should have accelerators marked with an '&'. title should be * a short summary. Strings should be gettextised. @@ -32,15 +32,17 @@ namespace Alert { */ int prompt(docstring const & title, docstring const & question, int default_button, int cancel_button, - docstring const & b1, docstring const & b2, - docstring const & b3 = empty_docstring(), - docstring const & b4 = empty_docstring()); + docstring const & b0, docstring const & b1, + docstring const & b2 = empty_docstring(), + docstring const & b3 = empty_docstring()); /** * Display a warning to the user. Title should be a short (general) summary. * Only use this if the user cannot perform some remedial action. * \p askshowagain will display a check box where the user can turn off the * warning for future cases. Ponder carefully if this is feasible. + * + * The console output takes care of converting any Qt html to plain text. */ void warning(docstring const & title, docstring const & message, bool const & askshowagain = false); @@ -49,6 +51,8 @@ void warning(docstring const & title, docstring const & message, * Display a warning to the user. Title should be a short (general) summary. * Only use this if the user cannot perform some remedial action. * On some systems it is possible to show a backtrace. + * + * The console output takes care of converting any Qt html to plain text. */ void error(docstring const & title, docstring const & message, bool backtrace = false);