diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2014-08-22 20:40:13 +0200 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2014-08-22 20:40:13 +0200 |
commit | ec36c62f4360daf9d39564e040ac4b181baf4316 (patch) | |
tree | 7c1500ccfe883d790910f13186557ebd027f2bac /epgclone.c | |
parent | 81de9f8c2e2c3223789ad1bed1f00d58c773d7b8 (diff) | |
download | vdr-plugin-epgfixer-ec36c62f4360daf9d39564e040ac4b181baf4316.tar.gz vdr-plugin-epgfixer-ec36c62f4360daf9d39564e040ac4b181baf4316.tar.bz2 |
Fix using channelIDs in EPG cloning, thanks to Guy Martin.
Diffstat (limited to 'epgclone.c')
-rw-r--r-- | epgclone.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ void cEpgClone::CloneEvent(cEvent *Source, cEvent *Dest) { if (dest_num) channelID = Channels.GetByNumber(dest_num)->GetChannelID(); else - channelID.FromString(dest_str); + channelID = tChannelID::FromString(dest_str); AddEvent(Dest, channelID); } |