From 94a0a210a485ce1fc95c47a6bc67c4c16c89a0f9 Mon Sep 17 00:00:00 2001 From: Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> Date: Sun, 25 Mar 2012 16:42:12 +0200 Subject: Updated LIVE to latest changes in vdr 1.7.27 - Do not use the direct access to cRecoding members any more. --- recman.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'recman.cpp') diff --git a/recman.cpp b/recman.cpp index fb315d2..6a2fc00 100644 --- a/recman.cpp +++ b/recman.cpp @@ -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 -- cgit v1.2.3