diff options
Diffstat (limited to 'recmenuview.c')
-rw-r--r-- | recmenuview.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/recmenuview.c b/recmenuview.c index 54cd7e5..07810ac 100644 --- a/recmenuview.c +++ b/recmenuview.c @@ -37,7 +37,7 @@ void cRecMenuView::Start(const cEvent *event) { this->event = event; activeMenu = new cRecMenuMain(recManager->EpgSearchAvailable(), recManager->CheckEventForTimer(event), SwitchTimers.EventInSwitchList(event)); activeMenu->Display(); - osdManager.flush(); + osdManager.Flush(); } void cRecMenuView::StartFavorites(void) { @@ -49,7 +49,7 @@ void cRecMenuView::StartFavorites(void) { recManager->GetFavorites(&favorites); activeMenu = new cRecMenuFavorites(favorites); activeMenu->Display(); - osdManager.flush(); + osdManager.Flush(); } @@ -70,7 +70,7 @@ void cRecMenuView::Close(void) { void cRecMenuView::SetBackground(void) { int backgroundWidth = geoManager.osdWidth; int backgroundHeight = geoManager.osdHeight; - pixmapBackground = osdManager.requestPixmap(3, cRect(0, 0, backgroundWidth, backgroundHeight)); + pixmapBackground = osdManager.CreatePixmap(3, cRect(0, 0, backgroundWidth, backgroundHeight)); pixmapBackground->Fill(theme.Color(clrRecMenuBackground)); if (config.scaleVideo) { int tvHeight = geoManager.statusHeaderHeight; @@ -81,7 +81,7 @@ void cRecMenuView::SetBackground(void) { } void cRecMenuView::DeleteBackground(void) { - osdManager.releasePixmap(pixmapBackground); + osdManager.DestroyPixmap(pixmapBackground); } void cRecMenuView::DisplaySearchTimerList(void) { @@ -994,12 +994,12 @@ eOSState cRecMenuView::ProcessKey(eKeys Key) { activeMenu->UpdateActiveMenuItem(); activeMenu->Show(); state = osContinue; - osdManager.flush(); + osdManager.Flush(); } return state; } state = StateMachine(nextState); } - osdManager.flush(); + osdManager.Flush(); return state; } |