summaryrefslogtreecommitdiff
path: root/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'event.h')
-rw-r--r--event.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/event.h b/event.h
index 14e8eb6..c6ca6af 100644
--- a/event.h
+++ b/event.h
@@ -42,7 +42,7 @@ private:
char *sql;
char *channelid;
char *source;
- bool mixing;
+ bool picexists;
int year;
time_t starttime;
int duration;
@@ -136,9 +136,9 @@ public:
{
eiteventid=EventID;
}
- void SetMixing(void)
+ void SetPicExists(void)
{
- mixing=true;
+ picexists=true;
}
int ParentalRating() const
{
@@ -212,9 +212,9 @@ public:
{
return episode;
}
- bool Mixing(void)
+ bool PicExists(void)
{
- return mixing;
+ return picexists;
}
};