mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-17 12:02:48 +01:00
Fix misspelled names.
This commit is contained in:
parent
e65596cba6
commit
08c0f7d28f
@ -1102,25 +1102,25 @@ void VkService::SongStarting(const Song& song) {
|
||||
audio_provider_->setBroadcast(id.audio_id, id.owner_id, IdList());
|
||||
NewClosure(reply, SIGNAL(resultReady(QVariant)), this,
|
||||
SLOT(BroadcastChangeReceived(Vreen::IntReply*)), reply);
|
||||
connect(app_->player(), SIGNAL(Stopped()), this, SLOT(SongStoped()),
|
||||
connect(app_->player(), SIGNAL(Stopped()), this, SLOT(SongStopped()),
|
||||
Qt::UniqueConnection);
|
||||
qLog(Debug) << "Broadcasting" << song.artist() << "-" << song.title();
|
||||
}
|
||||
}
|
||||
|
||||
void VkService::SongSkiped() {
|
||||
void VkService::SongSkipped() {
|
||||
current_song_.set_valid(false);
|
||||
cache_->BreakCurrentCaching();
|
||||
}
|
||||
|
||||
void VkService::SongStoped() {
|
||||
void VkService::SongStopped() {
|
||||
current_song_.set_valid(false);
|
||||
|
||||
if (isBroadcasting() && HasAccount()) {
|
||||
auto reply = audio_provider_->resetBroadcast(IdList());
|
||||
NewClosure(reply, SIGNAL(resultReady(QVariant)), this,
|
||||
SLOT(BroadcastChangeReceived(Vreen::IntReply*)), reply);
|
||||
disconnect(app_->player(), SIGNAL(Stopped()), this, SLOT(SongStoped()));
|
||||
disconnect(app_->player(), SIGNAL(Stopped()), this, SLOT(SongStopped()));
|
||||
qLog(Debug) << "End of broadcasting";
|
||||
}
|
||||
}
|
||||
|
@ -152,7 +152,7 @@ class VkService : public InternetService {
|
||||
/* Music */
|
||||
void SongStarting(const Song& song);
|
||||
void SongStarting(const QUrl& url); // Used if song taked from cache.
|
||||
void SongSkiped();
|
||||
void SongSkipped();
|
||||
UrlHandler::LoadResult GetSongResult(const QUrl& url);
|
||||
Vreen::AudioItem GetAudioItemFromUrl(const QUrl& url);
|
||||
// Return random song result from group playlist.
|
||||
@ -197,7 +197,7 @@ signals:
|
||||
void Error(Vreen::Client::Error error);
|
||||
|
||||
/* Music */
|
||||
void SongStoped();
|
||||
void SongStopped();
|
||||
void UpdateMyMusic();
|
||||
void UpdateBookmarkSongs(QStandardItem* item);
|
||||
void UpdateAlbumSongs(QStandardItem* item);
|
||||
|
@ -51,7 +51,7 @@ UrlHandler::LoadResult VkUrlHandler::StartLoading(const QUrl& url) {
|
||||
return result;
|
||||
}
|
||||
|
||||
void VkUrlHandler::TrackSkipped() { service_->SongSkiped(); }
|
||||
void VkUrlHandler::TrackSkipped() { service_->SongSkipped(); }
|
||||
|
||||
UrlHandler::LoadResult VkUrlHandler::LoadNext(const QUrl& url) {
|
||||
if (url.host() == "group") {
|
||||
|
Loading…
Reference in New Issue
Block a user