summaryrefslogtreecommitdiff
path: root/channelepg.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-11-10 17:13:43 +0100
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2022-06-18 17:03:15 +0200
commit00ea3fb5ffc0be40ea0bd90fb41aaa07cd0a301c (patch)
tree4c5b0deca9414d362542f83266fdfca44a051968 /channelepg.c
parent93af9304c8d798e71f86fc5166cc4d323ed0f9f6 (diff)
downloadvdr-plugin-tvguide-00ea3fb5ffc0be40ea0bd90fb41aaa07cd0a301c.tar.gz
vdr-plugin-tvguide-00ea3fb5ffc0be40ea0bd90fb41aaa07cd0a301c.tar.bz2
Rename isDummy() to IsDummy()
Diffstat (limited to 'channelepg.c')
-rw-r--r--channelepg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/channelepg.c b/channelepg.c
index d915386..f1e9f99 100644
--- a/channelepg.c
+++ b/channelepg.c
@@ -214,7 +214,7 @@ void cChannelEpg::AddNewGridsAtStart() {
const cSchedule *Schedule = NULL;
Schedule = schedules->GetSchedule(channel);
if (!Schedule) {
- if (firstGrid->isDummy()) {
+ if (firstGrid->IsDummy()) {
firstGrid->SetStartTime(timeManager->GetStart());
firstGrid->SetEndTime(timeManager->GetEnd());
}
@@ -238,7 +238,7 @@ void cChannelEpg::AddNewGridsAtStart() {
}
if (dummyNeeded) {
firstGrid = grids.First();
- if (firstGrid->isDummy()) {
+ if (firstGrid->IsDummy()) {
firstGrid->SetStartTime(timeManager->GetStart());
if (firstGrid->EndTime() >= timeManager->GetEnd())
firstGrid->SetEndTime(timeManager->GetEnd());
@@ -270,7 +270,7 @@ void cChannelEpg::AddNewGridsAtEnd() {
const cSchedule *Schedule = NULL;
Schedule = schedules->GetSchedule(channel);
if (!Schedule) {
- if (lastGrid->isDummy()) {
+ if (lastGrid->IsDummy()) {
lastGrid->SetStartTime(timeManager->GetStart());
lastGrid->SetEndTime(timeManager->GetEnd());
}
@@ -293,7 +293,7 @@ void cChannelEpg::AddNewGridsAtEnd() {
}
if (dummyNeeded) {
lastGrid = grids.Last();
- if (lastGrid->isDummy()) {
+ if (lastGrid->IsDummy()) {
lastGrid->SetEndTime(timeManager->GetEnd());
if (lastGrid->StartTime() <= timeManager->GetStart())
lastGrid->SetStartTime(timeManager->GetStart());
@@ -313,7 +313,7 @@ void cChannelEpg::ClearOutdatedStart() {
grids.Del(firstGrid);
firstGrid = NULL;
} else {
- if (firstGrid->isDummy()) {
+ if (firstGrid->IsDummy()) {
firstGrid->SetStartTime(timeManager->GetStart());
cGridElement *next = getNext(firstGrid);
if (next) {
@@ -337,7 +337,7 @@ void cChannelEpg::ClearOutdatedEnd() {
grids.Del(lastGrid);
lastGrid = NULL;
} else {
- if (lastGrid->isDummy()) {
+ if (lastGrid->IsDummy()) {
lastGrid->SetEndTime(timeManager->GetEnd());
cGridElement *prev = getPrev(lastGrid);
if (prev) {