ccmake: Align 'g' and 'q' key instructions.

They were miss-aligned with the 'enter' key instruction.

Before:
----
Press [enter] to edit option           CMake Version 2.8.3.20110107-g4b05a-dirty
Press [c] to configure
Press [h] for help         Press [q] to quit without generating
----

After:
----
Press [enter] to edit option           CMake Version 2.8.3.20110107-g4b05a-dirty
Press [c] to configure
Press [h] for help           Press [q] to quit without generating
----
This commit is contained in:
Nicolas Despres 2011-01-07 14:48:35 +01:00
parent bfb0ed4293
commit fd63219557
1 changed files with 3 additions and 2 deletions

View File

@ -421,7 +421,7 @@ void cmCursesMainForm::PrintKeys(int process /* = 0 */)
if (this->OkToGenerate)
{
sprintf(firstLine,
"Press [c] to configure Press [g] to generate and exit");
"Press [c] to configure Press [g] to generate and exit");
}
else
{
@ -437,7 +437,8 @@ void cmCursesMainForm::PrintKeys(int process /* = 0 */)
}
sprintf(secondLine,
"Press [h] for help Press [q] to quit without generating");
"Press [h] for help "
"Press [q] to quit without generating");
}
curses_move(y-4,0);