diff -r 5723da102db1 -r 38bbf2dcd608 qtinternetradio/ui/src/irstationdetailsview.cpp --- a/qtinternetradio/ui/src/irstationdetailsview.cpp Fri Sep 17 08:27:59 2010 +0300 +++ b/qtinternetradio/ui/src/irstationdetailsview.cpp Mon Oct 04 00:07:46 2010 +0300 @@ -52,9 +52,9 @@ /* * Description : update the station information. */ -void IRStationDetailsView::setDetails(IRQPreset * aPreset) +void IRStationDetailsView::setDetails(const IRQPreset * aPreset) { - iStationName->setPlainText(aPreset->name); + iStationName->setPlainText(aPreset->nickName); iGenres->setPlainText(aPreset->genreName); iLanguage->setPlainText(aPreset->languageName); iCountry->setPlainText(aPreset->countryName); @@ -80,7 +80,7 @@ void IRStationDetailsView::setDetails() { IRQPreset *nowPlayingPreset = iPlayController->getNowPlayingPreset(); - iStationName->setPlainText(nowPlayingPreset->name); + iStationName->setPlainText(nowPlayingPreset->nickName); iGenres->setPlainText(nowPlayingPreset->genreName); iLanguage->setPlainText(nowPlayingPreset->languageName); iCountry->setPlainText(nowPlayingPreset->countryName);