gui/channellist.cpp: remove switch(), use CRCInput::getNumericValue

This commit is contained in:
[CST] Focus
2012-04-04 18:45:40 +04:00
parent 3d5d834f3c
commit 2cb3edd0eb

View File

@@ -757,38 +757,7 @@ int CChannelList::show()
}
else if (CRCInput::isNumeric(msg) && (this->historyMode || g_settings.sms_channel)) {
if (this->historyMode) { //numeric zap
switch (msg) {
case CRCInput::RC_0:
selected = 0;
break;
case CRCInput::RC_1:
selected = 1;
break;
case CRCInput::RC_2:
selected = 2;
break;
case CRCInput::RC_3:
selected = 3;
break;
case CRCInput::RC_4:
selected = 4;
break;
case CRCInput::RC_5:
selected = 5;
break;
case CRCInput::RC_6:
selected = 6;
break;
case CRCInput::RC_7:
selected = 7;
break;
case CRCInput::RC_8:
selected = 8;
break;
case CRCInput::RC_9:
selected = 9;
break;
};
selected = CRCInput::getNumericValue(msg);
zapOnExit = true;
loop = false;
}