summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2009-10-01 20:47:08 (GMT)
committerDavid Cole <david.cole@kitware.com>2009-10-01 20:47:08 (GMT)
commit44bcba746156ad1d5fe7f784380c3fb4f4672f6b (patch)
tree34028a688c7649519a6a1086949f859d75a1a63f /Source/CursesDialog
parent86459a89a10733bad549c34a4c4c0ca962397bc6 (diff)
downloadCMake-44bcba746156ad1d5fe7f784380c3fb4f4672f6b.zip
CMake-44bcba746156ad1d5fe7f784380c3fb4f4672f6b.tar.gz
CMake-44bcba746156ad1d5fe7f784380c3fb4f4672f6b.tar.bz2
Fix warnings in CMake source code. Suppress rampant warnings emanating from Qt files.
Diffstat (limited to 'Source/CursesDialog')
-rw-r--r--Source/CursesDialog/cmCursesMainForm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CursesDialog/cmCursesMainForm.cxx b/Source/CursesDialog/cmCursesMainForm.cxx
index 854b919..cd231ad 100644
--- a/Source/CursesDialog/cmCursesMainForm.cxx
+++ b/Source/CursesDialog/cmCursesMainForm.cxx
@@ -920,7 +920,7 @@ void cmCursesMainForm::HandleInput()
{
if ( this->SearchString.size() < static_cast<std::string::size_type>(x-10) )
{
- this->SearchString += key;
+ this->SearchString += static_cast<char>(key);
}
}
else if ( key == ctrl('h') || key == KEY_BACKSPACE || key == KEY_DC )