diff -r ecf06a08d4d9 -r 2c5162224003 app/src/mpmainwindow.cpp --- a/app/src/mpmainwindow.cpp Mon May 03 12:29:20 2010 +0300 +++ b/app/src/mpmainwindow.cpp Fri Apr 30 19:33:32 2010 -0500 @@ -137,7 +137,7 @@ activateView(CollectionView); connect(this, SIGNAL( orientationChanged( Qt::Orientation ) ), SLOT( switchView( Qt::Orientation ) ) ); - connect( engine, SIGNAL( libraryRefreshed() ), SLOT( handleLibraryUpdated() ) ); + connect( engine, SIGNAL( libraryUpdated() ), SLOT( handleLibraryUpdated() ) ); engine->checkForSystemEvents(); loadView( PlaybackView ); } @@ -293,7 +293,7 @@ loadView(PlaybackView, MpCommon::FetchView ); MpViewBase* playbackView = reinterpret_cast(mPlaybackViewPlugin->getView()); connect(playbackView, SIGNAL(songSelected(QString)), mMusicServices, SLOT(itemSelected(QString))); - connect( engine, SIGNAL( libraryRefreshed() ), this, SLOT( handleLibraryUpdated() ) ); + connect( engine, SIGNAL( libraryUpdated() ), this, SLOT( handleLibraryUpdated() ) ); engine->checkForSystemEvents(); break; }