ERR: Fixed bad sentence in error message.
This commit is contained in:
parent
779810f132
commit
9d32676b70
|
@ -592,7 +592,7 @@ int cmCursesMainForm::Configure()
|
||||||
int x,y;
|
int x,y;
|
||||||
getmaxyx(stdscr, y, x);
|
getmaxyx(stdscr, y, x);
|
||||||
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
|
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
|
||||||
"Errors which during last pass.");
|
"Errors occurred during the last pass.");
|
||||||
CurrentForm = msgs;
|
CurrentForm = msgs;
|
||||||
msgs->Render(1,1,x,y);
|
msgs->Render(1,1,x,y);
|
||||||
msgs->HandleInput();
|
msgs->HandleInput();
|
||||||
|
@ -648,7 +648,7 @@ int cmCursesMainForm::Generate()
|
||||||
int x,y;
|
int x,y;
|
||||||
getmaxyx(stdscr, y, x);
|
getmaxyx(stdscr, y, x);
|
||||||
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
|
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
|
||||||
"Errors which during last pass.");
|
"Errors occurred during the last pass.");
|
||||||
CurrentForm = msgs;
|
CurrentForm = msgs;
|
||||||
msgs->Render(1,1,x,y);
|
msgs->Render(1,1,x,y);
|
||||||
msgs->HandleInput();
|
msgs->HandleInput();
|
||||||
|
@ -887,7 +887,7 @@ void cmCursesMainForm::HandleInput()
|
||||||
{
|
{
|
||||||
getmaxyx(stdscr, y, x);
|
getmaxyx(stdscr, y, x);
|
||||||
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
|
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
|
||||||
"Errors which during last pass.");
|
"Errors occurred during the last pass.");
|
||||||
CurrentForm = msgs;
|
CurrentForm = msgs;
|
||||||
msgs->Render(1,1,x,y);
|
msgs->Render(1,1,x,y);
|
||||||
msgs->HandleInput();
|
msgs->HandleInput();
|
||||||
|
|
Loading…
Reference in New Issue