summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog
diff options
context:
space:
mode:
authorNicolas Despres <nicolas.despres@gmail.com>2011-01-07 13:48:35 (GMT)
committerNicolas Despres <nicolas.despres@gmail.com>2011-10-23 20:18:14 (GMT)
commitfd63219557c4acc6e474263302ab9c78985f6d91 (patch)
treeb4ed22814311911714cc267038ffeaeeba9cd230 /Source/CursesDialog
parentbfb0ed4293c3a25c47d2fef7b9f19c25b8f5a477 (diff)
downloadCMake-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/CursesDialog')
-rw-r--r--Source/CursesDialog/cmCursesMainForm.cxx5
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);