Skip to content

Commit

Permalink
Add the year to the out-of-list textareas in the Recording Rules screen
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Aug 1, 2011
1 parent 29558de commit 1fb5297
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions mythtv/programs/mythfrontend/programrecpriority.cpp
Expand Up @@ -1597,13 +1597,17 @@ void ProgramRecPriority::updateInfo(MythUIButtonListItem *item)

if (m_lastRecordedText)
{
QString tempDateTime = MythDateTimeToString(pgRecInfo->last_record, kDateTimeFull);
QString tempDateTime = MythDateTimeToString(pgRecInfo->last_record,
kDateTimeFull | kSimplify |
kAddYear);
m_lastRecordedText->SetText(tempDateTime);
}

if (m_lastRecordedDateText)
{
QString tempDate = MythDateTimeToString(pgRecInfo->last_record, kDateShort);
QString tempDate = MythDateTimeToString(pgRecInfo->last_record,
kDateFull | kSimplify |
kAddYear);
m_lastRecordedDateText->SetText(tempDate);
}

Expand Down

0 comments on commit 1fb5297

Please sign in to comment.