diff options
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 |