diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2012-03-25 16:42:12 +0200 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2012-03-25 16:42:12 +0200 |
commit | 94a0a210a485ce1fc95c47a6bc67c4c16c89a0f9 (patch) | |
tree | 0454d32d46f76ed53c37bbd010700a2899915300 /epg_events.cpp | |
parent | f2d099676a25f6e238c3ad75f8f19b667f9627fb (diff) | |
download | vdr-plugin-live-94a0a210a485ce1fc95c47a6bc67c4c16c89a0f9.tar.gz vdr-plugin-live-94a0a210a485ce1fc95c47a6bc67c4c16c89a0f9.tar.bz2 |
Updated LIVE to latest changes in vdr 1.7.27
- Do not use the direct access to cRecoding members any more.
Diffstat (limited to 'epg_events.cpp')
-rw-r--r-- | epg_events.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/epg_events.cpp b/epg_events.cpp index a514769..cd4996e 100644 --- a/epg_events.cpp +++ b/epg_events.cpp @@ -182,12 +182,20 @@ namespace vdrlive time_t EpgRecording::GetStartTime() const { +#if VDRVERSNUM < 10726 return m_recording ? m_recording->start : 0; +#else + return m_recording ? m_recording->Start() : 0; +#endif } time_t EpgRecording::GetEndTime() const { +#if VDRVERSNUM < 10726 return m_recording ? m_recording->start : 0; +#else + return m_recording ? m_recording->Start() : 0; +#endif } const string EpgRecording::Name() const |