Rename for clarity.

This commit is contained in:
Richard Kimberly Heck 2019-05-12 23:16:25 -04:00
parent af4af35853
commit 15b90e4cc1
2 changed files with 7 additions and 7 deletions

View File

@ -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,9 +32,9 @@ 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.

View File

@ -139,8 +139,8 @@ int doPrompt(docstring const & title0, docstring const & question,
int prompt(docstring const & title0, docstring const & question,
int default_button, int cancel_button,
docstring const & b1, docstring const & b2,
docstring const & b3, docstring const & b4)
docstring const & b0, docstring const & b1,
docstring const & b2, docstring const & b3)
{
#ifdef EXPORT_in_THREAD
return InGuiThread<int>().call(&doPrompt,
@ -148,7 +148,7 @@ int prompt(docstring const & title0, docstring const & question,
return doPrompt(
#endif
title0, question, default_button,
cancel_button, b1, b2, b3, b4);
cancel_button, b0, b1, b2, b3);
}
void doWarning(docstring const & title0, docstring const & message,