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 /recman.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 'recman.cpp')
-rw-r--r-- | recman.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -383,7 +383,11 @@ namespace vdrlive { time_t RecordingsItemRec::StartTime() const { +#if VDRVERSNUM < 10726 return m_recording->start; +#else + return m_recording->Start(); +#endif } long RecordingsItemRec::Duration() const |