summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/cmCursesMainForm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CursesDialog/cmCursesMainForm.cxx')
-rw-r--r--Source/CursesDialog/cmCursesMainForm.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/CursesDialog/cmCursesMainForm.cxx b/Source/CursesDialog/cmCursesMainForm.cxx
index 8946238..e491164 100644
--- a/Source/CursesDialog/cmCursesMainForm.cxx
+++ b/Source/CursesDialog/cmCursesMainForm.cxx
@@ -683,14 +683,15 @@ int cmCursesMainForm::Configure(int noconfigure)
{
this->OkToGenerate = false;
}
- // reset error condition
- cmSystemTools::ResetErrorOccuredFlag();
int xx,yy;
getmaxyx(stdscr, yy, xx);
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(
this->Errors,
- cmSystemTools::GetErrorOccuredFlag() ? "Errors occurred during the last pass." :
- "CMake produced the following output.");
+ cmSystemTools::GetErrorOccuredFlag()
+ ? "Errors occurred during the last pass." :
+ "CMake produced the following output.");
+ // reset error condition
+ cmSystemTools::ResetErrorOccuredFlag();
CurrentForm = msgs;
msgs->Render(1,1,xx,yy);
msgs->HandleInput();