File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
mythtv/programs/mythbackend/services Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ DTC::ProgramList* Dvr::GetUpcoming( int nStartIndex,
211211 bool bShowAll )
212212{
213213 RecordingList recordingList;
214- RecordingList tmpList ( false ) ;
214+ RecordingList tmpList;
215215 bool hasConflicts;
216216 LoadFromScheduler (tmpList, hasConflicts);
217217
@@ -223,12 +223,12 @@ DTC::ProgramList* Dvr::GetUpcoming( int nStartIndex,
223223 ((*it)->GetRecordingStartTime () >=
224224 QDateTime::currentDateTime ()))
225225 {
226- recordingList.push_back (*it );
226+ recordingList.push_back (new RecordingInfo (**it) );
227227 }
228228 else if (bShowAll && ((*it)->GetRecordingStartTime () >=
229229 QDateTime::currentDateTime ()))
230230 {
231- recordingList.push_back (*it );
231+ recordingList.push_back (new RecordingInfo (**it) );
232232 }
233233 }
234234
You can’t perform that action at this time.
0 commit comments