diff options
Diffstat (limited to 'tvguideosd.c')
-rw-r--r-- | tvguideosd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tvguideosd.c b/tvguideosd.c index 5a52f16..897ad6c 100644 --- a/tvguideosd.c +++ b/tvguideosd.c @@ -219,7 +219,7 @@ void cTvGuideOsd::drawGridsTimeJump() { } } -void cTvGuideOsd::setNextActiveGrid(cGrid *next) { +void cTvGuideOsd::setNextActiveGrid(cGridElement *next) { if (!next || !activeGrid) { return; } @@ -278,7 +278,7 @@ void cTvGuideOsd::channelForward() { } } if (colRight) { - cGrid *right = colRight->getNeighbor(activeGrid); + cGridElement *right = colRight->getNeighbor(activeGrid); if (right) { setNextActiveGrid(right); } @@ -335,7 +335,7 @@ void cTvGuideOsd::channelBack() { } if (colLeft) { - cGrid *left = colLeft->getNeighbor(activeGrid); + cGridElement *left = colLeft->getNeighbor(activeGrid); if (left) { setNextActiveGrid(left); } @@ -356,7 +356,7 @@ void cTvGuideOsd::timeForward() { ScrollForward(); actionDone = true; } - cGrid *next = activeGrid->column->getNext(activeGrid); + cGridElement *next = activeGrid->column->getNext(activeGrid); if (next) { if ( (next->EndTime() < timeManager->GetEnd()) || ( (timeManager->GetEnd() - next->StartTime())/60 > 30 ) ) { @@ -388,7 +388,7 @@ void cTvGuideOsd::timeBack() { ScrollBack(); actionDone = true; } - cGrid *prev = activeGrid->column->getPrev(activeGrid); + cGridElement *prev = activeGrid->column->getPrev(activeGrid); if (prev) { if ( (prev->StartTime() > timeManager->GetStart()) || ( (prev->EndTime() - timeManager->GetStart())/60 > 30 ) |