mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 18:01:06 +02:00
CBouquetList: use required type
fix some possible compiler warnings
Origin commit data
------------------
Commit: acb256ba53
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-10-02 (Wed, 02 Oct 2013)
This commit is contained in:
@@ -118,9 +118,9 @@ void CBouquetList::deleteBouquet(CBouquet*bouquet)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int CBouquetList::getActiveBouquetNumber()
|
t_bouquet_id CBouquetList::getActiveBouquetNumber()
|
||||||
{
|
{
|
||||||
return selected;
|
return (t_bouquet_id)selected;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
@@ -112,7 +112,7 @@ class CBouquetList
|
|||||||
CBouquet* addBouquet(const char * const name, int BouquetKey=-1, bool locked=false );
|
CBouquet* addBouquet(const char * const name, int BouquetKey=-1, bool locked=false );
|
||||||
CBouquet* addBouquet(CZapitBouquet * zapitBouquet);
|
CBouquet* addBouquet(CZapitBouquet * zapitBouquet);
|
||||||
void deleteBouquet(CBouquet* bouquet);
|
void deleteBouquet(CBouquet* bouquet);
|
||||||
int getActiveBouquetNumber();
|
t_bouquet_id getActiveBouquetNumber();
|
||||||
int activateBouquet(int id, bool bShowChannelList);
|
int activateBouquet(int id, bool bShowChannelList);
|
||||||
int show(bool bShowChannelList = true);
|
int show(bool bShowChannelList = true);
|
||||||
int showChannelList(int nBouquet = -1);
|
int showChannelList(int nBouquet = -1);
|
||||||
|
Reference in New Issue
Block a user