
mythtv at cvs
Nov 21, 2009, 11:06 PM
Post #1 of 4
(567 views)
Permalink
|
|
Ticket #7633: Default new recording end offset is set to DefaultStartOffset pref, should be DefaultEndOffset
|
|
#7633: Default new recording end offset is set to DefaultStartOffset pref, should be DefaultEndOffset -------------------------------------+-------------------------------------- Reporter: mythtv@… | Owner: gigem Type: defect | Status: new Priority: minor | Milestone: unknown Component: MythTV - Scheduling | Version: head Severity: medium | Mlocked: 0 -------------------------------------+-------------------------------------- This seems to have been broken in the transition from ScheduledRecording to RecordingRule classes (based on my quick check of the SVN logs). I think this is a trivial fix. {{{ --- mythtv-trunk/mythtv/libs/libmythtv/recordingrule.cpp (revision 22880) +++ mythtv-trunk/mythtv/libs/libmythtv/recordingrule.cpp (working copy) @@ -26,7 +26,7 @@ m_recPriority(0), m_prefInput(0), m_startOffset(gContext->GetNumSetting("DefaultStartOffset", 0)), - m_endOffset(gContext->GetNumSetting("DefaultStartOffset", 0)), + m_endOffset(gContext->GetNumSetting("DefaultEndOffset", 0)), m_dupMethod(static_cast<RecordingDupMethodType>( gContext->GetNumSetting("prefDupMethod", kDupCheckSubDesc))), m_dupIn(kDupsInAll), }}} -- Ticket URL: <http://svn.mythtv.org/trac/ticket/7633> MythTV <http://www.mythtv.org/> MythTV _______________________________________________ mythtv-commits mailing list mythtv-commits [at] mythtv http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits
|