mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 15:02:50 +02:00
Merge branch 'check/next-cc'
it compiles, but is not really tested...
Conflicts:
src/driver/netfile.cpp
src/driver/volume.cpp
src/eitd/sectionsd.cpp
src/gui/audioplayer.cpp
src/gui/bedit/bouqueteditor_bouquets.cpp
src/gui/bedit/bouqueteditor_channels.cpp
src/gui/bookmarkmanager.cpp
src/gui/bouquetlist.cpp
src/gui/eventlist.cpp
src/gui/movieplayer.cpp
src/gui/pictureviewer.cpp
src/gui/scan.cpp
src/gui/test_menu.h
src/gui/timerlist.cpp
src/gui/update.cpp
src/gui/widget/listbox.cpp
src/neutrino.cpp
src/system/flashtool.cpp
src/zapit/src/Makefile.am
src/zapit/src/femanager.cpp
Origin commit data
------------------
Branch: ni/coolstream
Commit: d5d5a60261
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-06-16 (Sun, 16 Jun 2013)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -81,6 +81,7 @@ struct sectionsd
|
||||
{
|
||||
t_channel_id channel_id;
|
||||
bool requestEvent;
|
||||
int dnum;
|
||||
};
|
||||
|
||||
struct responseIsTimeSet
|
||||
|
@@ -155,13 +155,14 @@ bool CSectionsdClient::getIsScanningActive()
|
||||
}
|
||||
}
|
||||
|
||||
void CSectionsdClient::setServiceChanged(const t_channel_id channel_id, const bool requestEvent)
|
||||
void CSectionsdClient::setServiceChanged(const t_channel_id channel_id, const bool requestEvent, int dnum)
|
||||
{
|
||||
sectionsd::commandSetServiceChanged msg;
|
||||
VALGRIND_PARANOIA(msg);
|
||||
|
||||
msg.channel_id = channel_id;
|
||||
msg.requestEvent = requestEvent;
|
||||
msg.dnum = dnum;
|
||||
|
||||
send(sectionsd::serviceChanged, (char *)&msg, sizeof(msg));
|
||||
|
||||
|
@@ -79,6 +79,7 @@ class CSectionsdClient : private CBasicClient
|
||||
{
|
||||
EVT_TIMESET,
|
||||
EVT_GOT_CN_EPG,
|
||||
EVT_EIT_COMPLETE,
|
||||
#if 0
|
||||
EVT_SERVICES_UPDATE,
|
||||
EVT_BOUQUETS_UPDATE,
|
||||
@@ -189,7 +190,7 @@ class CSectionsdClient : private CBasicClient
|
||||
|
||||
bool getIsTimeSet();
|
||||
void setPauseScanning(const bool doPause);
|
||||
void setServiceChanged(const t_channel_id channel_id, const bool requestEvent);
|
||||
void setServiceChanged(const t_channel_id channel_id, const bool requestEvent, int dnum = 0);
|
||||
|
||||
bool getIsScanningActive();
|
||||
|
||||
|
Reference in New Issue
Block a user