gui/channellist.cpp: style, remove space before ()

Origin commit data
------------------
Branch: ni/coolstream
Commit: d0af67f529
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-13 (Tue, 13 Mar 2012)


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

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-03-13 14:49:52 +04:00
parent 4df57e32ce
commit f26f17de30

View File

@@ -181,7 +181,7 @@ void CChannelList::updateEvents(unsigned int from, unsigned int to)
(e->startTime < (long)chanlist[count]->nextEvent.startTime)) (e->startTime < (long)chanlist[count]->nextEvent.startTime))
{ {
chanlist[count]->nextEvent = *e; chanlist[count]->nextEvent = *e;
break; //max: FIXME no sense to continue ? break;
} }
} }
} }
@@ -454,15 +454,15 @@ int CChannelList::exec()
displayNext = 0; // always start with current events displayNext = 0; // always start with current events
int nNewChannel = show(); int nNewChannel = show();
if ( nNewChannel > -1) { if ( nNewChannel > -1) {
#if 1
if(this->historyMode && chanlist[nNewChannel]) { if(this->historyMode && chanlist[nNewChannel]) {
int new_mode = CNeutrinoApp::getInstance ()->channelList->getLastChannels().get_mode(chanlist[nNewChannel]->channel_id); int new_mode = CNeutrinoApp::getInstance()->channelList->getLastChannels().get_mode(chanlist[nNewChannel]->channel_id);
if(new_mode >= 0) if(new_mode >= 0)
CNeutrinoApp::getInstance()->SetChannelMode(new_mode); CNeutrinoApp::getInstance()->SetChannelMode(new_mode);
} }
CNeutrinoApp::getInstance ()->channelList->zapTo(getKey(nNewChannel)-1); #if 1
CNeutrinoApp::getInstance()->channelList->zapTo(getKey(nNewChannel)-1);
#else #else
CNeutrinoApp::getInstance ()->channelList->NewZap(chanlist[nNewChannel]->channel_id); CNeutrinoApp::getInstance()->channelList->NewZap(chanlist[nNewChannel]->channel_id);
#endif #endif
} }
@@ -663,8 +663,8 @@ int CChannelList::show()
else if ( msg == CRCInput::RC_setup) { else if ( msg == CRCInput::RC_setup) {
old_b_id = bouquetList->getActiveBouquetNumber(); old_b_id = bouquetList->getActiveBouquetNumber();
fader.Stop(); fader.Stop();
CNeutrinoApp::getInstance ()->g_channel_list_changed = doChannelMenu(); CNeutrinoApp::getInstance()->g_channel_list_changed = doChannelMenu();
if(CNeutrinoApp::getInstance ()->g_channel_list_changed) { if(CNeutrinoApp::getInstance()->g_channel_list_changed) {
res = -4; res = -4;
loop = false; loop = false;
} else { } else {
@@ -959,7 +959,7 @@ int CChannelList::show()
void CChannelList::hide() void CChannelList::hide()
{ {
frameBuffer->paintBackgroundBoxRel(x, y, width, height+ info_height+ 5); frameBuffer->paintBackgroundBoxRel(x, y, width, height+ info_height+ 5);
clearItem2DetailsLine (); clearItem2DetailsLine();
} }
bool CChannelList::showInfo(int pos, int epgpos) bool CChannelList::showInfo(int pos, int epgpos)
@@ -1212,7 +1212,7 @@ void CChannelList::zapTo(int pos, bool /* forceStoreToLastChannels */)
} }
g_RCInput->postMsg( NeutrinoMessages::SHOW_INFOBAR, 0 ); g_RCInput->postMsg( NeutrinoMessages::SHOW_INFOBAR, 0 );
CNeutrinoApp::getInstance ()->channelList->getLastChannels().set_mode(chan->channel_id); CNeutrinoApp::getInstance()->channelList->getLastChannels().set_mode(chan->channel_id);
} }
} }
@@ -1255,7 +1255,7 @@ int CChannelList::numericZap(int key)
if (key == g_settings.key_lastchannel) { if (key == g_settings.key_lastchannel) {
t_channel_id channel_id = lastChList.getlast(1); t_channel_id channel_id = lastChList.getlast(1);
if(channel_id && SameTP(channel_id)) { if(channel_id && SameTP(channel_id)) {
lastChList.clear_storedelay (); // ignore store delay lastChList.clear_storedelay(); // ignore store delay
int new_mode = lastChList.get_mode(channel_id); int new_mode = lastChList.get_mode(channel_id);
if(new_mode >= 0) if(new_mode >= 0)
CNeutrinoApp::getInstance()->SetChannelMode(new_mode); CNeutrinoApp::getInstance()->SetChannelMode(new_mode);
@@ -1598,7 +1598,7 @@ void CChannelList::quickZap(int key, bool cycle)
#else #else
CZapitChannel* chan = bouquetList->Bouquets[bactive]->channelList->getChannelFromIndex(cactive); CZapitChannel* chan = bouquetList->Bouquets[bactive]->channelList->getChannelFromIndex(cactive);
if(chan != NULL) if(chan != NULL)
CNeutrinoApp::getInstance ()->channelList->NewZap(chan->channel_id); CNeutrinoApp::getInstance()->channelList->NewZap(chan->channel_id);
#endif #endif
} else { } else {
if ( (key==g_settings.key_quickzap_down) || (key == CRCInput::RC_left)) { if ( (key==g_settings.key_quickzap_down) || (key == CRCInput::RC_left)) {
@@ -1613,7 +1613,7 @@ void CChannelList::quickZap(int key, bool cycle)
#if 1 #if 1
CNeutrinoApp::getInstance()->channelList->zapTo(getKey(selected)-1); CNeutrinoApp::getInstance()->channelList->zapTo(getKey(selected)-1);
#else #else
CNeutrinoApp::getInstance ()->channelList->NewZap(chanlist[selected]->channel_id); CNeutrinoApp::getInstance()->channelList->NewZap(chanlist[selected]->channel_id);
#endif #endif
} }
g_RCInput->clearRCMsg(); //FIXME test for n.103 g_RCInput->clearRCMsg(); //FIXME test for n.103
@@ -1764,7 +1764,7 @@ void CChannelList::paintDetails(int index)
} }
} }
void CChannelList::clearItem2DetailsLine () void CChannelList::clearItem2DetailsLine()
{ {
paintItem2DetailsLine (-1, 0); paintItem2DetailsLine (-1, 0);
} }