Fixed warning.

This commit is contained in:
Berk Geveci 2001-11-30 10:54:04 -05:00
parent d6e0f7da0c
commit 86e75e0d39
2 changed files with 4 additions and 5 deletions

View File

@ -17,7 +17,7 @@ void onsig(int sig)
if (cmCursesForm::CurrentForm)
{
endwin();
WINDOW* w= initscr(); /* Initialization */
initscr(); /* Initialization */
noecho(); /* Echo off */
cbreak(); /* nl- or cr not needed */
keypad(stdscr,TRUE); /* Use key symbols as
@ -63,7 +63,7 @@ int main(int argc, char** argv)
cmCacheManager::GetInstance()->LoadCache(cmSystemTools::GetCurrentWorkingDirectory().c_str());
WINDOW* w=initscr(); /* Initialization */
initscr(); /* Initialization */
noecho(); /* Echo off */
cbreak(); /* nl- or cr not needed */
keypad(stdscr,TRUE); /* Use key symbols as

View File

@ -384,7 +384,6 @@ void cmCursesMainForm::UpdateStatusBar()
width = cmCursesMainForm::MAX_WIDTH;
}
int leftLen = width - helpLen;
if (curFieldLen >= width)
{
strncpy(bar, curField, width);
@ -563,7 +562,7 @@ void cmCursesMainForm::HandleInput()
else if ( key == KEY_DOWN || key == ctrl('n') )
{
FIELD* cur = current_field(m_Form);
unsigned int index = field_index(cur);
int index = field_index(cur);
if ( index == 3*m_NumberOfVisibleEntries-1 )
{
continue;
@ -670,7 +669,7 @@ void cmCursesMainForm::HandleInput()
else if ( key == 'd' )
{
FIELD* cur = current_field(m_Form);
unsigned int index = field_index(cur);
int index = field_index(cur);
// make the next or prev. current field after deletion
// each entry consists of fields: label, isnew, value