Ticket #3207: printsched.diff

File printsched.diff, 1.3 KB (added by Nick Morrott <knowledgejunkie@…>, 17 years ago)

mythbackend --printsched fixup (against r13039)

  • programs/mythbackend/scheduler.cpp

     
    398398    QDateTime now = QDateTime::currentDateTime();
    399399
    400400    cout << "--- print list start ---\n";
    401     cout << "Title - Subtitle                    Chan ChID Day Start  End  "
    402         "C I  T N   Pri" << endl;
     401    cout << "Title - Subtitle                    Chan ChID CallSign "
     402        "Day Start  End   C I  T N   Pri" << endl;
    403403
    404404    RecIter i = list.begin();
    405405    for ( ; i != list.end(); i++)
     
    434434        episode = p->title.local8Bit();
    435435
    436436    cout << episode.leftJustify(35, ' ', true) << " "
    437          << p->chanstr.rightJustify(4, ' ') << " " << p->chanid
    438          << p->recstartts.toString("  dd hh:mm-").local8Bit()
     437         << p->chanstr.rightJustify(4, ' ') << " "
     438         << p->chanid.rightJustify(4, ' ') << " "
     439         << p->chansign.leftJustify(8, ' ', true) << "  "
     440         << p->recstartts.toString("dd hh:mm-").local8Bit()
    439441         << p->recendts.toString("hh:mm  ").local8Bit()
    440442         << p->cardid << " " << p->inputid << "  "
    441443         << p->RecTypeChar() << " " << p->RecStatusChar() << " "