mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +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()
|
||||
{
|
||||
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 false;
|
||||
|
Reference in New Issue
Block a user