Ticket #1763: moreverbosetuning2.patch

File moreverbosetuning2.patch, 1.1 KB (added by Dibblah, 19 years ago)

This patch includes the previous change and removes a (now) redundant toString from dvbtypes

  • libs/libmythtv/dvbtypes.cpp

     
    993993    return "Unknown";
    994994}
    995995
    996 QString toString(const struct dvb_frontend_parameters &params,
    997                  const fe_type_t type)
    998 {
    999     return QString("freq(%1) type(%2)")
    1000         .arg(params.frequency).arg(toString(type));
    1001 }
    1002 
    1003996QString toString(fe_status status)
    1004997{
    1005998    QString str("");
  • libs/libmythtv/dvbchannel.cpp

     
    649649    }
    650650
    651651    VERBOSE(VB_CHANNEL, LOC + "Old Params: " +
    652             toString(prev_tuning.params, info.type) +
     652            prev_tuning.toString(info.type) +
    653653            "\n\t\t\t" + LOC + "New Params: " +
    654             toString(tuning.params, info.type));
     654            tuning.toString(info.type));
    655655
    656656    if (reset || !prev_tuning.equal(info.type, tuning, 500000))
    657657    {