diff -r 075425b8d9a4 -r 189d20c34778 radioapp/radiowidgets/src/radiohistoryview.cpp --- a/radioapp/radiowidgets/src/radiohistoryview.cpp Fri Jun 11 13:38:32 2010 +0300 +++ b/radioapp/radiowidgets/src/radiohistoryview.cpp Wed Jun 23 18:12:57 2010 +0300 @@ -217,8 +217,6 @@ */ void RadioHistoryView::openOtherStore() { - QString msg = "To be implemented: Open other store. Artist: %1, Title: %2"; - HbMessageBox::information( msg.arg( mSelectedItem->artist() ).arg( mSelectedItem->title() ) ); mUiEngine->openMusicStore( *mSelectedItem, RadioUiEngine::OtherStore ); } @@ -253,6 +251,7 @@ void RadioHistoryView::init() { LOG_METHOD; + loadSection( DOCML::FILE_HISTORYVIEW, DOCML::SECTION_LAZY_LOAD ); RadioHistoryModel* historyModel = &mUiEngine->historyModel(); historyModel->setShowDetails( mOrientation == Qt::Horizontal ); @@ -294,6 +293,8 @@ this, SLOT(toggleTagging()) ); connectXmlElement( DOCML::HV_NAME_OVI_STORE_ACTION, SIGNAL(triggered()), this, SLOT(openOviStore()) ); + connectXmlElement( DOCML::HV_NAME_OTHER_STORE_ACTION, SIGNAL(triggered()), + this, SLOT(openOtherStore()) ); initBackAction(); updateViewMode();