diff --git a/mythtv/programs/mythfrontend/playbackbox.cpp b/mythtv/programs/mythfrontend/playbackbox.cpp
index 9de9cbd..57423f7 100644
|
a
|
b
|
void PlaybackBox::updateRecList(MythUIButtonListItem *sel_item)
|
| 1286 | 1286 | item->SetTextFromMap(infoMap); |
| 1287 | 1287 | |
| 1288 | 1288 | QString tempSubTitle = extract_subtitle(**it, groupname); |
| | 1289 | QString tempShortDate = MythDateTimeToString((*it)->GetRecordingStartTime(), |
| | 1290 | kDateShort); |
| | 1291 | QString tempLongDate = MythDateTimeToString((*it)->GetRecordingStartTime(), |
| | 1292 | kDateFull | kSimplify); |
| 1289 | 1293 | |
| 1290 | 1294 | if (groupname == (*it)->GetTitle().toLower()) |
| 1291 | 1295 | item->SetText(tempSubTitle, "titlesubtitle"); |
| 1292 | 1296 | |
| | 1297 | item->SetText(tempLongDate, "longdate"); |
| | 1298 | item->SetText(tempShortDate, "shortdate"); |
| | 1299 | |
| 1293 | 1300 | item->DisplayState(state, "status"); |
| 1294 | 1301 | |
| 1295 | 1302 | item->DisplayState(QString::number((*it)->GetStars(10)), "ratingstate"); |