summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-05-28 10:09:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-05-28 10:09:06 +0200
commitb4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b (patch)
tree1d14c80c5db191a3d57b3ec3c7f3cf9ba32f13c2 /recording.c
parent7114258ebd27e302eba4be88b546662c163396f4 (diff)
downloadvdr-b4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b.tar.gz
vdr-b4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b.tar.bz2
cEvent no longer stores the channelID directly, but rather has a pointer to the schedule it is in
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.c b/recording.c
index 64335649..cefbef02 100644
--- a/recording.c
+++ b/recording.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.c 1.104 2005/05/28 09:53:54 kls Exp $
+ * $Id: recording.c 1.105 2005/05/28 10:04:24 kls Exp $
*/
#include "recording.h"
@@ -228,7 +228,7 @@ cRecordingInfo::cRecordingInfo(const cEvent *Event)
ownEvent = NULL;
}
else
- event = ownEvent = new cEvent(tChannelID(), 0);
+ event = ownEvent = new cEvent(NULL, 0);
}
cRecordingInfo::~cRecordingInfo()