diff options
Diffstat (limited to 'footer.c')
-rw-r--r-- | footer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ cFooter::cFooter(cChannelGroups *channelGroups) { currentGroup = -1; buttonY = (geoManager.footerHeight - geoManager.buttonHeight)/2; SetButtonPositions(); - footer = osdManager.requestPixmap(2, cRect( 0, + footer = osdManager.CreatePixmap(2, cRect( 0, geoManager.footerY, geoManager.osdWidth, geoManager.footerHeight), @@ -17,7 +17,7 @@ cFooter::cFooter(cChannelGroups *channelGroups) { } cFooter::~cFooter(void) { - osdManager.releasePixmap(footer); + osdManager.DestroyPixmap(footer); } void cFooter::drawRedButton() { |