mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
cc_frm_window.cpp: fix type conversion
Wconversion
This commit is contained in:
@@ -422,7 +422,7 @@ uint8_t CComponentsWindow::getCurrentPage()
|
|||||||
bool CComponentsWindow::isPageChanged()
|
bool CComponentsWindow::isPageChanged()
|
||||||
{
|
{
|
||||||
for(size_t i=0; i<ccw_body->size(); i++){
|
for(size_t i=0; i<ccw_body->size(); i++){
|
||||||
if (ccw_body->getCCItem(i)->getPageNumber() != getCurrentPage())
|
if ((uint8_t)ccw_body->getCCItem(i)->getPageNumber() != getCurrentPage())
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user