Ticket #4896: 4896_welcome.diff

File 4896_welcome.diff, 1.2 KB (added by michael bishop <clever@…>, 16 years ago)
  • welcomedialog.cpp

     
    378378                status += "\n" + QDeepCopy<QString>(tuner->title);
    379379                if (!tuner->subtitle.isEmpty())
    380380                    status += "\n("+QDeepCopy<QString>(tuner->subtitle)+")";
    381                 status += "\n" + tuner->startTime.toString("hh:mm") +
    382                           " " + tr("to") + " " + tuner->endTime.toString("hh:mm");
     381                status += "\n" + tuner->startTime.toString(m_timeFormat) +
     382                          " " + tr("to") + " " + tuner->endTime.toString(m_timeFormat);
    383383            }
    384384            else
    385385            {
     
    414414
    415415            QString dateFormat = gContext->GetSetting("DateFormat", "ddd dd MMM yyyy");
    416416            status += "\n" + prog->startTime.toString(dateFormat + " (" + m_timeFormat) +
    417                 " " + tr("to") + " " +  prog->endTime.toString("hh:mm)");
     417                " " + tr("to") + " " +  prog->endTime.toString(m_timeFormat + ")");
    418418
    419419            if (m_screenScheduledNo < m_scheduledList.count() - 1)
    420420                m_screenScheduledNo++;