diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 15:06:07 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 15:06:07 +0200 |
commit | d21b1496f0f80732f290b39610253b857ad7a992 (patch) | |
tree | 633444984b091a2b4a224b753a52705e714dbaa5 /tvguideosd.c | |
parent | 5ff172c987fc2c6c516c38a2d5018ac1726c54b7 (diff) | |
download | vdr-plugin-tvguide-d21b1496f0f80732f290b39610253b857ad7a992.tar.gz vdr-plugin-tvguide-d21b1496f0f80732f290b39610253b857ad7a992.tar.bz2 |
Change cGrid to cGridElement
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 ) |