Ticket #7777: play_program-trunk.patch
| File play_program-trunk.patch, 1.3 KB (added by , 16 years ago) |
|---|
-
programs/mythfrontend/playbackbox.cpp
1754 1754 1755 1755 ProgramInfo *pginfo = qVariantValue<ProgramInfo *>(item->GetData()); 1756 1756 1757 playProgramInfo(pginfo); 1758 } 1759 1760 void PlaybackBox::playProgramInfo(ProgramInfo *pginfo) 1761 { 1757 1762 if (!pginfo) 1758 1763 return; 1759 1764 … … 3620 3625 tmpItem->setIgnoreBookmark(true); 3621 3626 3622 3627 m_underNetworkControl = true; 3623 play Selected(m_recordingList->GetItemCurrent());3628 playProgramInfo(tmpItem); 3624 3629 m_underNetworkControl = false; 3625 3630 } 3626 3631 else -
programs/mythfrontend/playbackbox.h
136 136 { UpdateUIListItem(item, true); } 137 137 void selected(MythUIButtonListItem *item); 138 138 void playSelected(MythUIButtonListItem *item = NULL); 139 void playProgramInfo(ProgramInfo *pginfo = NULL); 139 140 void deleteSelected(MythUIButtonListItem *item); 140 141 141 142 void SwitchList(void);
