Skip to content

Commit

Permalink
Correct an indent and a case problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Riendeau committed Jun 17, 2012
1 parent 11e8120 commit 5ff71cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/jobqueue.cpp
Expand Up @@ -1675,7 +1675,7 @@ void JobQueue::ProcessJob(JobQueueEntry job)
.arg(job.recstartts.toString(Qt::ISODate))); .arg(job.recstartts.toString(Qt::ISODate)));


ChangeJobStatus(jobID, JOB_ERRORED, ChangeJobStatus(jobID, JOB_ERRORED,
tr("Unable to retrieve Program Info from database")); tr("Unable to retrieve program info from database"));


delete pginfo; delete pginfo;


Expand Down Expand Up @@ -2035,7 +2035,7 @@ void JobQueue::DoTranscodeThread(int jobID)
{ {
filesize = st.size(); filesize = st.size();
/*: %1 is transcoder name, %2 is the original file size /*: %1 is transcoder name, %2 is the original file size
and %3 is the current file size */ and %3 is the current file size */
QString comment = QString(tr("%1: %2 => %3")) QString comment = QString(tr("%1: %2 => %3"))
.arg(transcoderName) .arg(transcoderName)
.arg(PrettyPrint(origfilesize)) .arg(PrettyPrint(origfilesize))
Expand Down

0 comments on commit 5ff71cc

Please sign in to comment.