Fix the names of these signals/slots

This commit is contained in:
David Sansome 2010-04-14 22:54:15 +00:00
parent 2a33954725
commit 5519985a3b
1 changed files with 4 additions and 4 deletions

View File

@ -225,10 +225,10 @@ MainWindow::MainWindow(QNetworkAccessManager* network, QWidget *parent)
connect(library_, SIGNAL(TotalSongCountUpdated(int)), ui_.library_view, SLOT(TotalSongCountUpdated(int)));
connect(library_, SIGNAL(ScanStarted()), SLOT(LibraryScanStarted()));
connect(library_, SIGNAL(ScanFinished()), SLOT(LibraryScanFinished()));
connect(library_, SIGNAL(BackendReady(shared_ptr<LibraryBackendInterface>)),
cover_manager_.get(), SLOT(SetBackend(shared_ptr<LibraryBackendInterface>)));
connect(library_, SIGNAL(BackendReady(shared_ptr<LibraryBackendInterface>)),
playlist_, SLOT(SetBackend(shared_ptr<LibraryBackendInterface>)));
connect(library_, SIGNAL(BackendReady(boost::shared_ptr<LibraryBackendInterface>)),
cover_manager_.get(), SLOT(SetBackend(boost::shared_ptr<LibraryBackendInterface>)));
connect(library_, SIGNAL(BackendReady(boost::shared_ptr<LibraryBackendInterface>)),
playlist_, SLOT(SetBackend(boost::shared_ptr<LibraryBackendInterface>)));
// Age filters
QActionGroup* filter_age_group = new QActionGroup(this);