--- a/qtinternetradio/ui/src/irsonghistorymodel.cpp Thu May 27 12:46:34 2010 +0300
+++ b/qtinternetradio/ui/src/irsonghistorymodel.cpp Fri Jun 11 13:30:40 2010 +0300
@@ -77,15 +77,16 @@
songName = hbTrId("txt_irad_list_unknown_song");
}
+ QString stationName = mSongHistoryList.at(row)->getStationName().trimmed();
if (Qt::Vertical == mOrientation)
{
- list.append("<" + artistName + ">");
- list.append("<" + songName + ">");
+ list.append(artistName);
+ list.append(songName);
}
else
{
- list.append("<" + artistName +"> - <" + songName + ">");
- list.append("<Not ready>");
+ list.append(artistName + " - " + songName);
+ list.append(stationName);
}
return list;
}