mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
CBouquetList: use required type
fix some possible compiler warnings
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
|
||||
|
@@ -112,7 +112,7 @@ class CBouquetList
|
||||
CBouquet* addBouquet(const char * const name, int BouquetKey=-1, bool locked=false );
|
||||
CBouquet* addBouquet(CZapitBouquet * zapitBouquet);
|
||||
void deleteBouquet(CBouquet* bouquet);
|
||||
int getActiveBouquetNumber();
|
||||
t_bouquet_id getActiveBouquetNumber();
|
||||
int activateBouquet(int id, bool bShowChannelList);
|
||||
int show(bool bShowChannelList = true);
|
||||
int showChannelList(int nBouquet = -1);
|
||||
|
Reference in New Issue
Block a user