CursesDialog: don't use else after return
This commit is contained in:
parent
11e0ceaeab
commit
4988b914e1
|
@ -40,9 +40,8 @@ bool cmCursesBoolWidget::HandleInput(int& key, cmCursesMainForm* /*fm*/,
|
|||
touchwin(w);
|
||||
wrefresh(w);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void cmCursesBoolWidget::SetValueAsBool(bool value)
|
||||
|
|
|
@ -110,7 +110,6 @@ const char* cmCursesCacheEntryComposite::GetValue()
|
|||
{
|
||||
if (this->Label) {
|
||||
return this->Label->GetValue();
|
||||
} else {
|
||||
}
|
||||
return CM_NULLPTR;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,10 +13,7 @@
|
|||
|
||||
#include "cmCursesMainForm.h"
|
||||
|
||||
inline int ctrl(int z)
|
||||
{
|
||||
return (z & 037);
|
||||
}
|
||||
#define ctrl(z) ((z)&037)
|
||||
|
||||
cmCursesOptionsWidget::cmCursesOptionsWidget(int width, int height, int left,
|
||||
int top)
|
||||
|
@ -34,24 +31,26 @@ cmCursesOptionsWidget::cmCursesOptionsWidget(int width, int height, int left,
|
|||
bool cmCursesOptionsWidget::HandleInput(int& key, cmCursesMainForm* /*fm*/,
|
||||
WINDOW* w)
|
||||
{
|
||||
|
||||
// 10 == enter
|
||||
if (key == 10 || key == KEY_ENTER) {
|
||||
switch (key) {
|
||||
case 10: // 10 == enter
|
||||
case KEY_ENTER:
|
||||
this->NextOption();
|
||||
touchwin(w);
|
||||
wrefresh(w);
|
||||
return true;
|
||||
} else if (key == KEY_LEFT || key == ctrl('b')) {
|
||||
case KEY_LEFT:
|
||||
case ctrl('b'):
|
||||
touchwin(w);
|
||||
wrefresh(w);
|
||||
this->PreviousOption();
|
||||
return true;
|
||||
} else if (key == KEY_RIGHT || key == ctrl('f')) {
|
||||
case KEY_RIGHT:
|
||||
case ctrl('f'):
|
||||
this->NextOption();
|
||||
touchwin(w);
|
||||
wrefresh(w);
|
||||
return true;
|
||||
} else {
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -94,11 +94,10 @@ bool cmCursesStringWidget::HandleInput(int& key, cmCursesMainForm* fm,
|
|||
// quit
|
||||
if (key == 'q') {
|
||||
return false;
|
||||
} else {
|
||||
}
|
||||
key = getch();
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
// If resize occurred during edit, move out of edit mode
|
||||
if (!this->InEdit && (key != 10 && key != KEY_ENTER && key != 'i')) {
|
||||
|
@ -207,7 +206,6 @@ bool cmCursesStringWidget::PrintKeys()
|
|||
curses_move(y - 3, 0);
|
||||
printw(fmt_s, "Editing option, press [enter] to leave edit.");
|
||||
return true;
|
||||
} else {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue