diff --git a/src/zapit/include/zapit/bouquets.h b/src/zapit/include/zapit/bouquets.h index 9b081a87d..5b8e7f971 100644 --- a/src/zapit/include/zapit/bouquets.h +++ b/src/zapit/include/zapit/bouquets.h @@ -50,8 +50,10 @@ class CZapitBouquet void moveService (const unsigned int oldPosition, const unsigned int newPosition, const unsigned char serviceType); +#if 0 size_t recModeRadioSize(const transponder_id_t transponder_id); size_t recModeTVSize (const transponder_id_t transponder_id); +#endif CZapitChannel* getChannelByChannelID(const t_channel_id channel_id, const unsigned char serviceType = ST_RESERVED); void sortBouquet(void); void sortBouquetByNumber(void); @@ -89,7 +91,7 @@ class CBouquetManager ChannelIterator operator ++(int); CZapitChannel* operator *(); ChannelIterator FindChannelNr(const unsigned int channel); - int getLowestChannelNumberWithChannelID(const t_channel_id channel_id); + //int getLowestChannelNumberWithChannelID(const t_channel_id channel_id); int getNrofFirstChannelofBouquet(const unsigned int bouquet_nr); bool EndOfChannels() { return (c == -2); }; }; diff --git a/src/zapit/src/bouquets.cpp b/src/zapit/src/bouquets.cpp index b7b4d7727..8ed4627c6 100644 --- a/src/zapit/src/bouquets.cpp +++ b/src/zapit/src/bouquets.cpp @@ -158,6 +158,7 @@ void CZapitBouquet::moveService(const unsigned int oldPosition, const unsigned i } } +#if 0 size_t CZapitBouquet::recModeRadioSize(const transponder_id_t transponder_id) { size_t size = 0; @@ -179,6 +180,7 @@ size_t CZapitBouquet::recModeTVSize(const transponder_id_t transponder_id) return size; } +#endif CBouquetManager::~CBouquetManager() { @@ -673,6 +675,7 @@ CBouquetManager::ChannelIterator CBouquetManager::ChannelIterator::FindChannelNr return (*this); } +#if 0 int CBouquetManager::ChannelIterator::getLowestChannelNumberWithChannelID(const t_channel_id channel_id) { int i = 0; @@ -684,6 +687,7 @@ int CBouquetManager::ChannelIterator::getLowestChannelNumberWithChannelID(const //return i; return -1; // not found } +#endif int CBouquetManager::ChannelIterator::getNrofFirstChannelofBouquet(const unsigned int bouquet_nr) {