Ticket #5871: viewscheduled.patch
File viewscheduled.patch, 1.1 KB (added by , 17 years ago) |
---|
-
mythtv/configure
1244 1244 ar="ar" 1245 1245 nm="nm" 1246 1246 ranlib="ranlib" 1247 make="make" 1247 1248 qmake="qmake" 1248 1249 strip="strip" 1249 1250 asmalign_pot="unknown" -
mythtv/programs/mythfrontend/viewscheduled.cpp
342 342 343 343 void ViewScheduled::edit() 344 344 { 345 ProgramInfo *pginfo = qVariantValue<ProgramInfo*> 346 (m_schedulesList->GetItemCurrent()->GetData()); 347 if (!pginfo) 348 return; 345 if (!m_schedulesList->IsEmpty()) 346 { 347 ProgramInfo *pginfo = qVariantValue<ProgramInfo*> 348 (m_schedulesList->GetItemCurrent()->GetData()); 349 if (!pginfo) 350 return; 349 351 350 pginfo->EditScheduled(); 352 pginfo->EditScheduled(); 353 } 351 354 } 352 355 353 356 void ViewScheduled::customEdit()