Ticket #4473: utf8recordingmessages.patch

File utf8recordingmessages.patch, 1.6 KB (added by andrei@…, 16 years ago)
  • libs/libmythtv/scheduledrecording.cpp

     
    553553                                    .arg(subtitle)
    554554                                    .arg(proginfo.chanid);
    555555
    556     VERBOSE(VB_GENERAL, QString("%1 %2").arg(msg).arg(details).local8Bit());
     556    VERBOSE(VB_GENERAL, QString("%1 %2").arg(msg).arg(details).utf8());
    557557    gContext->LogEntry("scheduler", LP_NOTICE, msg, details);
    558558}
    559559
  • libs/libmyth/mythcontext.cpp

     
    37623762        if (priority <= d->m_logprintlevel)
    37633763        {
    37643764            VERBOSE(VB_IMPORTANT,
    3765                     QString("%1: %2").arg(module).arg(fullMsg));
     3765                    QString("%1: %2").arg(module).arg(fullMsg).utf8());
    37663766        }
    37673767    }
    37683768}
  • programs/mythbackend/scheduler.cpp

     
    15251525            msg = is_rec ? "Started recording" : "Canceled recording (" +
    15261526                nextRecording->RecStatusText() + ")";
    15271527
    1528             VERBOSE(VB_GENERAL, msg << ": " << details);
     1528            VERBOSE(VB_GENERAL, QString("%1: %2").arg(msg).arg(details).utf8());
    15291529            gContext->LogEntry("scheduler", LP_NOTICE, msg, details);
    15301530
    15311531            if (is_rec)