Skip to content

Commit

Permalink
Revert "Scheduler::UpdateManuals: Don't skip "fall back" hour on time…
Browse files Browse the repository at this point in the history
… change for a manual record."

This reverts commit 92d4e06.
  • Loading branch information
jpoet committed Aug 7, 2013
1 parent 92d4e06 commit eede3aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythbackend/scheduler.cpp
Expand Up @@ -3185,10 +3185,10 @@ void Scheduler::UpdateManuals(uint recordid)
QString title = query.value(1).toString();
QString station = query.value(2).toString() ;
QDateTime lstartdt = QDateTime(query.value(3).toDate(),
query.value(4).toTime(), Qt::UTC);
query.value(4).toTime(), Qt::UTC).toLocalTime();
int duration = lstartdt.secsTo(
QDateTime(query.value(5).toDate(),
query.value(6).toTime(), Qt::UTC));
query.value(6).toTime(), Qt::UTC).toLocalTime());

query.prepare("SELECT chanid from channel "
"WHERE callsign = :STATION");
Expand Down

0 comments on commit eede3aa

Please sign in to comment.