diff options
author | Nicolas Despres <nicolas.despres@gmail.com> | 2011-01-07 13:48:35 (GMT) |
---|---|---|
committer | Nicolas Despres <nicolas.despres@gmail.com> | 2011-10-23 20:18:14 (GMT) |
commit | fd63219557c4acc6e474263302ab9c78985f6d91 (patch) | |
tree | b4ed22814311911714cc267038ffeaeeba9cd230 /Source | |
parent | bfb0ed4293c3a25c47d2fef7b9f19c25b8f5a477 (diff) | |
download | CMake-fd63219557c4acc6e474263302ab9c78985f6d91.zip CMake-fd63219557c4acc6e474263302ab9c78985f6d91.tar.gz CMake-fd63219557c4acc6e474263302ab9c78985f6d91.tar.bz2 |
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
----
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CursesDialog/cmCursesMainForm.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CursesDialog/cmCursesMainForm.cxx b/Source/CursesDialog/cmCursesMainForm.cxx index 17fa0ff..faaac8b 100644 --- a/Source/CursesDialog/cmCursesMainForm.cxx +++ b/Source/CursesDialog/cmCursesMainForm.cxx @@ -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); |