~ubuntu-branches/ubuntu/wily/vdr-plugin-live/wily

« back to all changes in this revision

Viewing changes to epg_events.cpp

  • Committer: Package Import Robot
  • Author(s): Tobias Grimm
  • Date: 2012-04-28 07:21:16 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120428072116-vu5mhfg1xi6nbzcb
Tags: 0.2.0+git20120428-1
* Build-depend on vdr-dev (>= 1.7.27)
* New Upstream Snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
 
183
183
        time_t EpgRecording::GetStartTime() const
184
184
        {
 
185
#if VDRVERSNUM < 10726
185
186
                return m_recording ? m_recording->start : 0;
 
187
#else
 
188
                return m_recording ? m_recording->Start() : 0;
 
189
#endif
186
190
        }
187
191
 
188
192
        time_t EpgRecording::GetEndTime() const
189
193
        {
 
194
#if VDRVERSNUM < 10726
190
195
                return m_recording ? m_recording->start : 0;
 
196
#else
 
197
                return m_recording ? m_recording->Start() : 0;
 
198
#endif
191
199
        }
192
200
 
193
201
        const string EpgRecording::Name() const