CChannelList: fix code indentation

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9fd3b27d61
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-05-08 (Mon, 08 May 2017)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2017-05-08 08:19:55 +02:00
parent 46bd5911ee
commit 0a2db29f3c

View File

@@ -360,10 +360,12 @@ int CChannelList::doChannelMenu(void)
CBouquetList *blist = tvmode ? TVfavList : RADIOfavList;
bool fav_found = true;
switch(select) {
case 0: {// edit mode
case 0: // edit mode
{
bool unlocked = true;
if (g_settings.parentallock_prompt == PARENTALLOCK_PROMPT_CHANGETOLOCKED) {
int pl_z = g_settings.parentallock_zaptime * 60;
if (g_settings.personalize[SNeutrinoSettings::P_MSER_BOUQUET_EDIT] == CPersonalizeGui::PERSONALIZE_MODE_PIN) {
unlocked = false;
} else if (bouquet && bouquet->zapitBouquet && bouquet->zapitBouquet->bLocked) {
@@ -384,9 +386,11 @@ int CChannelList::doChannelMenu(void)
}
if (unlocked)
editMode(true);
ret = -1;
break;
}case 1: // add to
}
case 1: // add to
if (!addChannelToBouquet())
return -1;
ret = 1;