Fix an ancient typo that was breaking last.fm scrobbling reporting.

This commit is contained in:
David Sansome 2013-04-15 21:22:45 +10:00
parent bb0f7412be
commit 8e3581af64
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ bool LastFMService::InitScrobbler() {
connect(scrobbler_, SIGNAL(scrobblesSubmitted(QList<lastfm::Track>)), SIGNAL(ScrobbleSubmitted()));
connect(scrobbler_, SIGNAL(nowPlayingError(int,QString)), SIGNAL(ScrobbleError(int)));
#else
connect(scrobbler_, SIGNAL(status(int)), SIGNAL(ScrobblerStatus(int)));
connect(scrobbler_, SIGNAL(status(int)), SLOT(ScrobblerStatus(int)));
#endif
return true;
}